Co-authored-by: Gelu Vrabie <[email protected]> Co-authored-by: Alex Cheema <[email protected]> Co-authored-by: Seth Howes <[email protected]> Co-authored-by: Matt Beton <[email protected]> Co-authored-by: Alex Cheema <[email protected]>
13 lines
377 B
YAML
13 lines
377 B
YAML
name: Unit Test
|
|
|
|
description: "Run unit tests"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Run unit tests
|
|
run: |
|
|
nix --extra-experimental-features nix-command --extra-experimental-features flakes develop -c just sync-clean
|
|
nix --extra-experimental-features nix-command --extra-experimental-features flakes develop -c just test-fast
|
|
shell: bash
|