diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 52caf55..3a5069d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -50,3 +50,15 @@ jobs: - name: Install GFortran macOS if: contains( matrix.os, 'macos') run: brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose + + # TODO: integrate these with `cargo test` above + - name: Run manual tests + run: | + cargo run -- --help + ./run_tests.sh |