diff options
| author | Robin Ole Heinemann <robin.ole.heinemann@t-online.de> | 2020-07-21 13:04:42 +0200 |
|---|---|---|
| committer | whitequark <whitequark@whitequark.org> | 2020-07-24 08:37:25 +0000 |
| commit | 1a3f2b8628a23f2a20b47f96c1b24213a85a91fb (patch) | |
| tree | 0942d5ecb5fd5e1386e1e6c5860110086742f965 | |
| parent | 01c10b02f5cf866a9ae167b2af5abbd72cded3ea (diff) | |
CI: Setup github actions
This uses "setup.py test" to check if all boards are importable, until
a better solution is found or actual tests are added.
| -rw-r--r-- | .github/workflows/main.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6107779 --- /dev/null +++ b/.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 |
