diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-19 14:48:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-19 14:48:05 -0400 |
| commit | 56ac638d93c96712d6c624e60dcfa4540d334b18 (patch) | |
| tree | b3b5b985cc5be83545d8883207ee614f23627ef8 /.github | |
| parent | 1b1ae65a4a2acd55ead86c17e388f10a0e08938d (diff) | |
Remove test.py, use cargo test as test frontend (#2967)
Fixes #2933
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00e3b3e80..22886e48e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,10 +70,10 @@ jobs: run: sccache --start-server - name: Build - run: cargo build -vv --release --locked --all-targets + run: cargo build --release --locked --all-targets - name: Test - run: python ./tools/test.py + run: cargo test --release --locked --all-targets - name: Stop sccache run: sccache --stop-server |
