From dbe8b25eedac59ef3820d6fdb062d6c4b7f52b74 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 29 Apr 2024 17:46:18 -0400 Subject: [PATCH] ci: Check without build for now Should fix an issue where the ci was running out of space. --- .github/workflows/ci.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 047c05df..0bc7ad2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,21 +8,12 @@ on: jobs: test: - name: nix flake check + name: nix flake check --no-build runs-on: ubuntu-latest steps: - - uses: easimon/maximize-build-space@v10 - with: - root-reserve-mb: 512 - swap-size-mb: 1024 - remove-dotnet: 'true' - remove-android: 'true' - remove-haskell: 'true' - remove-codeql: 'true' - remove-docker-images: 'true' - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v26 - - run: nix flake check + - run: nix flake check --no-build format: name: nix fmt -- --check **/*.nix runs-on: ubuntu-latest