chore: switch from Travis to Github Actions for validate (#217)

This commit is contained in:
Rod Vagg 2021-06-09 17:52:40 +10:00 committed by GitHub
parent ce070dd06d
commit 12d35dd6c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 9 deletions

11
.github/workflows/validate.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Validate
on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: python validate.py

View File

@ -1,9 +0,0 @@
sudo: false
language: python
python:
- "3.6"
script:
- python validate.py