Skip to content

Bump the ci-dependencies group across 1 directory with 4 updates #15

Bump the ci-dependencies group across 1 directory with 4 updates

Bump the ci-dependencies group across 1 directory with 4 updates #15

Workflow file for this run

name: "Tests"
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python 3.x
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.x
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: python -m pip install .[dev]
- name: "Run tests"
run: pytest