feat: delete into black hole only for visual #597
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: x86_64-darwin | |
jobs: | |
flake-check: | |
# latest x86_64-darwin | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
- name: Flake check | |
run: nix flake check | |
build-shell: | |
# latest x86_64-darwin | |
runs-on: macos-13 | |
needs: | |
- flake-check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
- if: ${{ !github.event.pull_request.head.repo.fork }} | |
uses: cachix/cachix-action@v15 | |
with: | |
name: "konradmalik" | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Shell build | |
run: nix build .#devShells.x86_64-darwin.default | |
tests: | |
# latest x86_64-darwin | |
runs-on: macos-13 | |
needs: | |
- build-shell | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
- name: run tests | |
run: nix develop --command make test | |
build-package: | |
# latest x86_64-darwin | |
runs-on: macos-13 | |
needs: | |
- tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
- if: ${{ !github.event.pull_request.head.repo.fork }} | |
uses: cachix/cachix-action@v15 | |
with: | |
name: "konradmalik" | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Flake build default package | |
run: nix build .#packages.x86_64-darwin.default |