chore: switch from Travis to Github Actions for validate (#217)
This commit is contained in:
parent
ce070dd06d
commit
12d35dd6c0
|
@ -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
|
|
@ -1,9 +0,0 @@
|
|||
sudo: false
|
||||
|
||||
language: python
|
||||
|
||||
python:
|
||||
- "3.6"
|
||||
|
||||
script:
|
||||
- python validate.py
|
Loading…
Reference in New Issue