From 944c4c14bda31effb2d4e983328491b303df03eb Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 27 Jan 2025 14:22:42 -0600 Subject: [PATCH] remove outdated check workflow --- .github/workflows/checks.yml | 40 ------------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/checks.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml deleted file mode 100644 index 863599f..0000000 --- a/.github/workflows/checks.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Run Nix Flake Checks - -on: - workflow_call: - workflow_dispatch: - inputs: - lockFile: - description: "flake.lock file" - type: string - -jobs: - checks: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: ./.github/actions/clean-disk - with: - purge-packages: false - - - uses: DeterminateSystems/nix-installer-action@main - with: - extra-conf: | - accept-flake-config = true - - uses: DeterminateSystems/magic-nix-cache-action@v8 - - uses: cachix/cachix-action@v15 - with: - name: daylin - authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" - - - name: write lock file - if: "${{ inputs.lockFile != '' }}" - run: | - echo '${{ inputs.lockFile }}' > flake.lock - git diff - - - name: Build - run: | - set -euo pipefail - cachix watch-exec daylin -- nix build '.#checks.x86_64-linux.makePackages'