Merge pull request #24 from enpaul/enp/fix-ci

Fix automated CI
This commit is contained in:
Ethan Paul 2020-11-12 00:52:18 -05:00 committed by GitHub
commit b6415888d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -23,8 +23,8 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python.version }}
- name: Install tox
run: pip install "tox>=3.20.0,<3.21.0" --upgrade
- name: Install project
run: pip install .
- name: Run tests via ${{ matrix.python.toxenv }}
run: tox -e ${{ matrix.python.toxenv }}
Check:
@ -35,7 +35,7 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install tox requirements
run: pip install "tox>=3.20.0,<3.21.0" --upgrade
- name: Install project
run: pip install .
- name: Run meta checks
run: tox -e static -e static-tests -e security

View File

@ -52,5 +52,5 @@ toml = "^0.10.1"
tox = "^3.20.0"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"