Skip to content

[pre-commit.ci] pre-commit autoupdate #133

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #133

Workflow file for this run

name: Testing
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
name: Testing on
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.11", "3.9", "3.8", "pypy-3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
- name: pip version
run: pip --version
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Test
run: coverage run --source=z3c/dependencychecker -m pytest
- name: Coverage
run: coveralls --service=github