GitHub Actions: Create linter to test config file

pull/1/head
Starbeamrainbowlabs 2021-11-18 00:45:36 +00:00
parent ff774af0ad
commit e053e28ff0
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2
1 changed files with 15 additions and 0 deletions

15
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: "CI Tests"
on: [push]
jobs:
Syntax-Check:
runs-on: ubuntu-latest
steps:
# Checkout the git repo
- name: Checkout
uses: actions/checkout@v2
- name: Install apt dependencies
run: sudo apt-get --quiet install jq; uname -a; jq --version
- name: Perform Check
run: jq . <feeds.json