WIP WIP WIP WIP (NOT DONE) The Github Action to install Lix WIP WIP WIP WIP
Find a file
Zhaofeng Li b7b7f9899e Make the runner user trusted by default
Usually we want the runner user to be able to configure
binary caches.
2023-01-31 19:57:37 -07:00
.github/workflows More thorough testing 2023-01-13 12:18:14 -08:00
action.yml Make the runner user trusted by default 2023-01-31 19:57:37 -07:00
LICENSE Add LICENSE 2023-01-13 10:30:02 -08:00
README.md Add @main to uses statement for nix installer GHA 2023-01-17 12:01:54 -03:00

Nix Installer Action

You can use nix-installer as a Github action like so:

on:
  pull_request:
  push:
    branches: [main]

jobs:
  lints:
    name: Build
    runs-on: ubuntu-22.04
    steps:
    - uses: actions/checkout@v3
    - name: Install Nix
      uses: DeterminateSystems/nix-installer-action@main
      with:
        # Allow the installed Nix to make authenticated Github requests.
        # If you skip this, you will likely get rate limited.
        github-token: ${{ secrets.GITHUB_TOKEN }}
    - name: Run `nix build`
      run: nix build .

See .github/workflows/ci.yml for a full example.