mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-12-01 22:14:04 +03:00
17 lines
297 B
YAML
17 lines
297 B
YAML
name: Tests
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
test-py39:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
- run: pip install tox
|
|
- run: tox
|
|
env:
|
|
TOXENV: py39 |