Enable CI with GitHub Actions
This commit is contained in:
parent
762fbf33b4
commit
44f32cecd7
1 changed files with 14 additions and 0 deletions
14
.github/workflows/tests.yml
vendored
Normal file
14
.github/workflows/tests.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
name: CI
|
||||||
|
on: push
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: 3.8
|
||||||
|
architecture: x64
|
||||||
|
- run: pip install nox==2020.5.24
|
||||||
|
- run: pip install poetry==1.0.10
|
||||||
|
- run: nox
|
Loading…
Reference in a new issue