Skip to content

chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.4.10 #394

chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.4.10

chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.4.10 #394

name: Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
schedule:
- cron: "25 7 */9 * *"
workflow_dispatch:
permissions:
contents: read
pull-requests: read
jobs:
build:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13-dev"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: boidolr/actions/python-pip-env@main
with:
python-version: "${{ matrix.python-version }}"
- name: Execute tests
run: |
pip3 install -q tox
tox -e py
precommit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: boidolr/actions/run-precommit@main