mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-27 05:29:42 +01:00
20 lines
393 B
YAML
20 lines
393 B
YAML
|
name: My Workflow
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
my_job:
|
||
|
name: My Job on ${{ matrix.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
- name: nix
|
||
|
run: |
|
||
|
curl https://nixos.org/nix/install | sh
|
||
|
. "$HOME"/.nix-profile/etc/profile.d/nix.sh
|
||
|
./test.bash
|