blob: 368cf68c5a11177535c0cce92205b6d3139a2650 (
plain) (
tree)
|
|
name: Tests
on: push
env:
GITHUB_ACTIONS_RUNNER: runner
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==2019.11.9
- run: pip install poetry==1.0.5
- run: nox
|