name: Checks on: [push] concurrency: group: '${{ github.ref_name }}-checks' cancel-in-progress: true jobs: build: strategy: matrix: compiler: [ gcc, clang ] name: Build dged with ${{ matrix.compiler }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install Nix uses: cachix/install-nix-action@v26 with: install_url: https://releases.nixos.org/nix/nix-2.18.1/install - name: Build run: nix build -L .#${{ matrix.compiler }}