Skip to content

Commit

Permalink
#163: Add baseline GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MRichards99 committed Jan 6, 2021
1 parent b11001d commit 863d1f2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install nox==2020.8.22
- run: pip install poetry==1.1.4
- run: nox

0 comments on commit 863d1f2

Please sign in to comment.