Skip to content

Add CODEOWNERS file #25

Add CODEOWNERS file

Add CODEOWNERS file #25

Workflow file for this run

on:
pull_request:
push:
branches: [main, master]
name: pre-commit
jobs:
pre-commit:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
# Replacement for pre-commit/action
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: python -m pip install pre-commit
shell: bash
- run: python -m pip freeze --local
shell: bash
- run: pre-commit run --show-diff-on-failure --color=always --all-files
shell: bash