check_container_upgrade/.forgejo/workflows/tests.yaml
Benjamin Renard ba0f972b34
All checks were successful
Run tests / tests (push) Successful in 1m34s
Configure CI to run tests and build/publish new release
2024-07-15 19:56:38 +02:00

14 lines
323 B
YAML

---
name: Run tests
on: [push]
jobs:
tests:
runs-on: docker
container:
image: docker.io/brenard/python-pre-commit:latest
options: "--workdir /src"
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Run pre-commit
run: pre-commit run --all-files