Frees up disk space on GitHub Ubuntu runners #352
Workflow file for this run
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
name: "Nix CI" | |
on: | |
pull_request: | |
push: | |
jobs: | |
nix-build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
- os: macos-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/free-disk-space | |
- uses: cachix/install-nix-action@v24 | |
- name: Nix Flake Check | |
run: nix -Lv flake check | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: mycache | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
extraPullNames: emacsng | |
- name: Run Emacsng Exec | |
run: nix -Lv run .#emacsng-noNativeComp -- --version |