Skip to content

Dockerfile improvements for Catch2 #58

Dockerfile improvements for Catch2

Dockerfile improvements for Catch2 #58

Workflow file for this run

name: pre-commit
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
container: libfn/ci-pre-commit:latest
steps:
- uses: actions/checkout@v4
- name: Prepare
run: |
# Required because of https://github.com/actions/checkout/issues/766
git config --global --add safe.directory "${GITHUB_WORKSPACE}"
pip freeze --local
- name: Apply pre-commit
run: |
pre-commit run --show-diff-on-failure --color=always --all-files