Skip to content

Commit

Permalink
CI: Setup github actions
Browse files Browse the repository at this point in the history
This uses "setup.py test" to check if all boards are importable, until
a better solution is found or actual tests are added.
  • Loading branch information
rroohhh authored and whitequark committed Jul 24, 2020
1 parent 01c10b0 commit 1a3f2b8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,13 @@
on: [push, pull_request]
name: CI
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Test
run: |
python setup.py test

0 comments on commit 1a3f2b8

Please sign in to comment.