Ditch Travis CI and switch to GitHub actions

This commit is contained in:
Andrea Cardaci
2023-04-14 08:58:48 +02:00
parent d02dea79bc
commit 59c9560ac0
3 changed files with 22 additions and 11 deletions

20
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install jsonschema yamllint
- name: Run tests
run: |
make lint