mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 22:27:50 -05:00
Co-authored-by: Gelu Vrabie <gelu@exolabs.net> Co-authored-by: Alex Cheema <41707476+AlexCheema@users.noreply.github.com> Co-authored-by: Seth Howes <71157822+sethhowes@users.noreply.github.com> Co-authored-by: Matt Beton <matthew.beton@gmail.com> Co-authored-by: Alex Cheema <alexcheema123@gmail.com>
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
|