Clear pending txs #39
This file contains 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: Check Code Quality | |
on: | |
# We're using merge-chains; so this needs to run then. | |
merge_group: | |
pull_request: | |
jobs: | |
quality: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Checkout repository | |
uses: actions/checkout@v4 | |
- name: β Setup Nix/Cachix | |
uses: ./.github/actions/nix-cachix-setup | |
with: | |
authToken: '${{ secrets.CACHIX_CARDANO_SCALING_AUTH_TOKEN }}' | |
- name: π Check treefmt | |
run: | | |
nix build .#checks.x86_64-linux.treefmt | |
- name: π Check hlint | |
run: | | |
nix build .#checks.x86_64-linux.hlint | |
- name: π Check weeder | |
run: | | |
nix build .#checks.x86_64-linux.weeder |