Skip to content

ci: split test-and-sync into two workflows #1

ci: split test-and-sync into two workflows

ci: split test-and-sync into two workflows #1

Workflow file for this run

---
name: test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Pre-commit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: pre-commit tests
uses: pre-commit/action@v3.0.1