Ruff fixes #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
schedule: | |
# Run every Sunday | |
- cron: "0 0 * * 0" | |
workflow_dispatch: | |
jobs: | |
code-quality: | |
name: Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
cache-dependency-path: | | |
pyproject.toml | |
- name: Install hatch | |
run: | | |
pip install hatch | |
- name: Lint package | |
run: | | |
hatch run lint | |
hatch run typecheck | |
tests: | |
name: "Tests (${{ matrix.os }}, Python ${{ matrix.python-version }})" | |
needs: code-quality | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: | | |
pyproject.toml | |
- name: Install hatch | |
run: | | |
pip install hatch | |
- name: Install zip on Windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
choco install zip | |
- name: Run tests | |
run: | | |
hatch run tests.py${{ matrix.python-version }}:test | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
fail_ci_if_error: true | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Build distribution and test installation | |
shell: bash | |
run: | | |
hatch build | |
if [[ ${{ matrix.os }} == "windows-latest" ]]; then | |
PYTHON_BIN=Scripts/python | |
else | |
PYTHON_BIN=bin/python | |
fi | |
echo "=== Testing wheel installation ===" | |
python -m venv .venv-whl | |
.venv-whl/$PYTHON_BIN -m pip install --upgrade pip | |
.venv-whl/$PYTHON_BIN -m pip install dist/repro_zipfile-*.whl | |
.venv-whl/$PYTHON_BIN -c "from repro_zipfile import ReproducibleZipFile" | |
echo "=== Testing source installation ===" | |
python -m venv .venv-sdist | |
.venv-sdist/$PYTHON_BIN -m pip install --upgrade pip | |
.venv-sdist/$PYTHON_BIN -m pip install dist/repro_zipfile-*.tar.gz --force-reinstall | |
.venv-sdist/$PYTHON_BIN -c "from repro_zipfile import ReproducibleZipFile" | |
notify: | |
name: Notify failed build | |
needs: [code-quality, tests] | |
if: failure() && github.event.pull_request == null | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jayqi/failed-build-issue-action@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |