From 65253342a63d4395d7d67dfe5a6cfbb2fc1f8bc1 Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Thu, 11 Apr 2024 15:02:53 +0200 Subject: [PATCH] remove github actions --- .github/workflows/fmt.yaml | 27 --------------------------- .github/workflows/main.yml | 34 ---------------------------------- 2 files changed, 61 deletions(-) delete mode 100644 .github/workflows/fmt.yaml delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/fmt.yaml b/.github/workflows/fmt.yaml deleted file mode 100644 index 93d16c5..0000000 --- a/.github/workflows/fmt.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: main - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - check-flake: - name: Nixpkgs Formatting - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Install Nix - uses: cachix/install-nix-action@v18 - with: - extra_nix_config: | - experimental-features = nix-command flakes - - - run: nix-channel --add https://nixos.org/channels/nixos-22.11 nixos - - run: nix-channel --update - - run: nix shell nixpkgs#nixpkgs-fmt -c nixpkgs-fmt . --check diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 8f203d2..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: main - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - check-flake: - name: Check Flake - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Install Nix - uses: cachix/install-nix-action@v18 - with: - install_url: https://releases.nixos.org/nix/nix-2.13.3/install - extra_nix_config: | - experimental-features = nix-command flakes - - - uses: cachix/cachix-action@v12 - with: - name: fruitbasket - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - extraPullNames: nix-community - - - run: nix build - - - run: nix flake check