From 1a3f2b8628a23f2a20b47f96c1b24213a85a91fb Mon Sep 17 00:00:00 2001 From: Robin Ole Heinemann Date: Tue, 21 Jul 2020 13:04:42 +0200 Subject: 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. --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/main.yml (limited to '.github/workflows') 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 -- cgit v1.2.3