Bump kleidukos/get-tested from 0.1.7.1 to 0.1.9.0 (#1852) #94
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: Code style checks | |
| concurrency: | |
| group: formatting-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Check code formatting | |
| run: | | |
| nix develop '#haskellFormatter' --command fourmolu --mode=check --check-idempotence servant servant-* | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Run hlint check | |
| run: | | |
| nix develop '#haskellLinter' --command hlint servant servant-* |