Skip to content

chore(deps-dev): bump filelock from 3.12.2 to 3.20.1 in the pip group across 1 directory #193

chore(deps-dev): bump filelock from 3.12.2 to 3.20.1 in the pip group across 1 directory

chore(deps-dev): bump filelock from 3.12.2 to 3.20.1 in the pip group across 1 directory #193

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Configure Poetry
run: |
poetry config virtualenvs.in-project true
- name: Install dependencies
run: |
poetry install -vvv
- name: Run tests
run: poetry run python -m unittest discover