mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2025-02-17 05:25:06 +01:00
The test list would go out-of-date when new packages were added. This does the same check as before, but uses the binaries we already specify on the nix level (via a passthru). The next step is to try to run the binaries (e.g. with --version), which will give us a better test of whether they are actually executable.
19 lines
300 B
YAML
19 lines
300 B
YAML
name: My Workflow
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
my_job:
|
|
name: My Job on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: cachix/install-nix-action@v9
|
|
- run: ./test.sh
|