Skip to content

Commit

Permalink
Github Actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Motlik committed Sep 17, 2019
1 parent d0cc517 commit 7964f2f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,20 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.6', '3.7']
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: make dependencies
- name: Check Code
run: make check-code
- name: Run Unit Tests
run: make test

0 comments on commit 7964f2f

Please sign in to comment.