Skip to content

Merge pull request #44 from schradert/feat/gen_attr_name-abbreviations #93

Merge pull request #44 from schradert/feat/gen_attr_name-abbreviations

Merge pull request #44 from schradert/feat/gen_attr_name-abbreviations #93

Workflow file for this run

name: Unit testing
on:
push:
branches:
- main
paths-ignore:
- manifests/**
pull_request:
branches:
- main
jobs:
lib-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-experimental-features = nix-command flakes
- name: Run .#libTests
run: |
echo "# Test Results" > $GITHUB_STEP_SUMMARY
nix run .#libTests | tee -a $GITHUB_STEP_SUMMARY
module-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-experimental-features = nix-command flakes
- name: Run .#moduleTests
run: |
echo "# Test Results" > $GITHUB_STEP_SUMMARY
nix run .#moduleTests | tee -a $GITHUB_STEP_SUMMARY