From 8b48cbd5010e3ce8c41406aafcd10b920a927102 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 15 Oct 2024 19:28:16 -0400 Subject: tidy up (#328) * nix: tidy up flake * ci: tidy up workflows * cleanup bindings --- .github/workflows/ci.yaml | 53 ----------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .github/workflows/ci.yaml (limited to '.github/workflows/ci.yaml') diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index b77ed84..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,53 +0,0 @@ -name: CI - -on: - pull_request: - workflow_dispatch: - -jobs: - build: - name: Build - - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install Nix - uses: DeterminateSystems/nix-installer-action@v13 - - - name: Install Dependencies - run: nix develop .#ci --command pnpm install --frozen-lockfile - - - name: Run build - run: nix develop .#ci --command nrr build - - treefmt: - name: Treefmt - - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install Nix - uses: DeterminateSystems/nix-installer-action@v13 - - - name: Run checks - run: | - nix develop .#ci --command treefmt --fail-on-change - - release-gate: - name: CI Release gate - needs: [build, treefmt] - - if: always() - - runs-on: ubuntu-latest - - steps: - - name: Exit with error - if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') - run: exit 1 -- cgit v1.2.3