Skip to content

Bump filelock from 3.13.1 to 3.16.1 #491

Bump filelock from 3.13.1 to 3.16.1

Bump filelock from 3.13.1 to 3.16.1 #491

Workflow file for this run

name: Test
on: [push, pull_request, workflow_call]
jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.1
test:
needs: qa
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r dev-requirements.txt
- name: Run tests
run: pytest