We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d6009c commit aaeeb56Copy full SHA for aaeeb56
.github/workflows/devcontainer-command.yml
.github/workflows/lint.yml
@@ -8,6 +8,15 @@ on: # rebuild any PRs and main branch changes
8
9
jobs:
10
lint:
11
- uses: ./.github/workflows/devcontainer-command.yml
12
- with:
13
- run_cmd: pre-commit run --all-files --show-diff-on-failure
+ runs-on: 'ubuntu-24.04'
+
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Check pre-commit hooks
18
+ uses: ./.github/actions/devcontainer
19
+ with:
20
+ token: ${{ secrets.GITHUB_TOKEN }}
21
+ command: >
22
+ pre-commit run --all-files --show-diff-on-failure
0 commit comments