Merge pull request #80 from a-kenji/dependabot/cargo/tracing-subscrib… #190
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "actionlint" | |
| on: | |
| workflow_dispatch: # allows manual triggering | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '**.md' | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '**.md' | |
| merge_group: | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: nixos/nix-installer-action@main | |
| - name: "actionlint" | |
| run: nix run -Lv --refresh --inputs-from .# nixpkgs#actionlint -- --ignore SC2002 |