Explicitly set pagination limit on listing clusters. #1016
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: crunchy-public | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- uses: actions/checkout@v4 | |
- name: nix flake check | |
run: nix flake check --print-build-logs --keep-going |