mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
49 lines
912 B
Markdown
49 lines
912 B
Markdown
# install-nix-action
|
|
|
|
![github actions badge](https://github.com/cachix/install-nix-action/workflows/install-nix-action%20test/badge.svg)
|
|
|
|
Installs [Nix](https://nixos.org/nix/) on GitHub Actions for the supported platforms: Linux and macOS.
|
|
|
|
## Usage
|
|
|
|
Create `.github/workflows/test.yml` in your repo with the following contents:
|
|
|
|
```yaml
|
|
name: "Test"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: cachix/install-nix-action@v6
|
|
- run: nix-build
|
|
```
|
|
|
|
|
|
See [action.yml](action.yml) for all options.
|
|
|
|
See also [cachix-action](https://github.com/cachix/cachix-action) for
|
|
simple binary cache setup to speed up your builds and share binaries
|
|
with developers.
|
|
|
|
---
|
|
|
|
## Hacking
|
|
|
|
Install the dependencies
|
|
```bash
|
|
$ yarn install
|
|
```
|
|
|
|
Build the typescript
|
|
```bash
|
|
$ yarn build
|
|
```
|
|
|
|
Run the tests :heavy_check_mark:
|
|
```bash
|
|
$ yarn test
|
|
```
|