mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-23 11:39:42 +01:00
19 lines
379 B
YAML
19 lines
379 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]
|
|
|
|
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
|