Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

pre-commit action uses deprecated Node.js version; run checks directly #148

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/mcad-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
python-version: '3.11'

- name: Run pre-commit checks
uses: pre-commit/[email protected]
run: |
pip install pre-commit
pre-commit run --show-diff-on-failure --color=always --all-files

- name: Build
run: make build
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/mcad-kueue-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
python-version: '3.11'

- name: Run pre-commit checks
uses: pre-commit/[email protected]
run: |
pip install pre-commit
pre-commit run --show-diff-on-failure --color=always --all-files

- name: Build
run: make build
Expand Down