mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
b97862cb9f
* Add GA test and linter jobs * Remove not used async run() functions from tests * Update aiohttp ext test * Add botocore warning ignores * Update changelog * Update publishing job config for testing * Publishing test #1 * Update GA tests-and-linters job to use latest ubuntu for tests * Update publishing GA job
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: Tests and linters
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
|
|
test-on-different-versions:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", pypy2, pypy3]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- run: pip install tox
|
|
- run: tox
|
|
env:
|
|
TOXENV: ${{ matrix.python-version }}
|
|
|
|
test-coverage:
|
|
name: Run tests with coverage
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
DEPENDENCY_INJECTOR_DEBUG_MODE: 1
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.10"
|
|
- run: pip install tox cython
|
|
- run: make cythonize
|
|
- run: tox
|
|
env:
|
|
TOXENV: coveralls
|
|
|
|
linters:
|
|
name: Run linters
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
toxenv: [flake8, pydocstyle, mypy, pylint]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.10"
|
|
- run: pip install tox
|
|
- run: tox
|
|
env:
|
|
TOXENV: ${{ matrix.toxenv }}
|