diff options
| author | quapka | 2025-06-21 12:29:49 +0200 |
|---|---|---|
| committer | quapka | 2025-06-21 12:29:49 +0200 |
| commit | f46cbc450e81ce1a61980c724ab0f9f470f47ade (patch) | |
| tree | 61b6263ba086b62f9091582fcdcac6f49173892b /.github | |
| parent | 8e79faeab09aad2b8d6861dd2baa95b419255c90 (diff) | |
| download | ECTester-f46cbc450e81ce1a61980c724ab0f9f470f47ade.tar.gz ECTester-f46cbc450e81ce1a61980c724ab0f9f470f47ade.tar.zst ECTester-f46cbc450e81ce1a61980c724ab0f9f470f47ade.zip | |
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nix.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 71efe06..45a2348 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -50,3 +50,32 @@ jobs: - name: List library run: nix run ".?submodules=1#${{ matrix.library }}.default" -- list-libs + + reader: + runs-on: ubuntu-latest + permissions: + contents: read + + name: Build reader + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + fetch-tags: true + fetch-depth: -1 + + - uses: DeterminateSystems/nix-installer-action@v13 + with: + diagnostic-endpoint: "" + + - uses: DeterminateSystems/magic-nix-cache-action@v7 + with: + diagnostic-endpoint: "" + + - name: Build reader + run: | + nix build ".?submodules=1#reader" + + - name: Show reader --help + run: | + nix build ".?submodules=1#reader" -- --help |
