mirror of
https://github.com/nmattia/niv.git
synced 2024-11-08 08:26:02 +03:00
20 lines
385 B
YAML
20 lines
385 B
YAML
name: "Test"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-18.04, macos-10.15]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: './.github/actions/nix'
|
|
with:
|
|
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
- name: "Run tests"
|
|
run: ./script/test
|