16 lines
339 B
YAML
16 lines
339 B
YAML
|
---
|
||
|
name: Run tests
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
test-precommit:
|
||
|
runs-on: docker
|
||
|
container:
|
||
|
image: docker.io/brenard/python-pre-commit:latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- name: Run pre-commit
|
||
|
run: pre-commit run --all-files
|