Skip to content

[pre-commit.ci] pre-commit autoupdate (#72) #265

[pre-commit.ci] pre-commit autoupdate (#72)

[pre-commit.ci] pre-commit autoupdate (#72) #265

Workflow file for this run

name: build
on:
push:
branches: [ 'main' ]
pull_request:
# one running workflow per branch, others will wait
concurrency: ${{ github.ref }}
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: pre-commit/[email protected]
mypy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
id: python
- name: Restore python cache
uses: actions/cache@v4
id: cache
with:
path: ${{ env.pythonLocation }}
key: python-${{ env.pythonLocation }}-${{ hashFiles('requirements*.txt') }}
- name: Restore mypy cache
uses: actions/cache@v4
with:
path: .mypy_cache
key: mypy-${{ hashFiles('requirements*.txt') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pip install -r requirements-dev.txt
- name: Run mypy
run: make mypy
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# Issue ref: https://github.com/actions/setup-python/issues/436
# cache: "pip"
cache-dependency-path: pyproject.toml
id: python
- name: Restore python cache
uses: actions/cache@v4
id: cache
with:
path: ${{ env.pythonLocation }}
key: python-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'requirements-test.txt') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pip install -r requirements-test.txt
- name: Run tests
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# https://github.com/marketplace/actions/alls-green#why
check: # This job does nothing and is only used for the branch protection
if: always()
needs:
- pre-commit
- mypy
- test
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}