Skip to content

chore(ci): update pre-commit with email checking #39

chore(ci): update pre-commit with email checking

chore(ci): update pre-commit with email checking #39

Workflow file for this run

name: "Test"
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
test:
name: Run automated tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install tools
run: python3 -m pip install --upgrade pip setuptools wheel
- name: Install DEV dependencies
run: pip install -e .[dev]
- name: Run pre-commit checks
run: |
pip install pre-commit
pre-commit run --all-files
- name: Run tests
run: bash run_tests.sh