mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
20 lines
No EOL
435 B
YAML
20 lines
No EOL
435 B
YAML
name: "install-nix-action test"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-18.04, macos]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
# TODO: just commit it using github
|
|
- run: git diff --exit-code
|
|
- run: yarn test
|
|
- name: Install Nix
|
|
uses: ./
|
|
- run: nix-build test.nix |