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 3e329c3 commit bb31d16Copy full SHA for bb31d16
.github/workflows/pull_request.yml
@@ -44,8 +44,21 @@ jobs:
44
cargo fmt --all --check
45
taplo format --check
46
47
+ actionlint:
48
+ name: Lint GitHib Actions
49
+ runs-on: ubuntu-latest
50
+ steps:
51
+ - uses: actions/checkout@v4
52
+ - name: Download actionlint
53
+ id: get_actionlint
54
+ run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
55
+ shell: bash
56
+ - name: Check workflow files
57
+ run: ${{ steps.get_actionlint.outputs.executable }} -color
58
59
+
60
lint:
- name: Lint
61
+ name: Lint Project
62
runs-on: ubuntu-latest
63
services:
64
postgres:
0 commit comments