diff options
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d8236c..e5b800e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -79,11 +79,8 @@ jobs: - name: Run tests run: wasm-pack test serde_dhall --node - # Tests don't work because of path escaping shenanigans. I have a branch that - # will fix that but depends on https://github.com/LukasKalbertodt/libtest-mimic/pull/4 test_windows: - name: Build on windows - # name: Run tests on windows + name: Run tests on windows runs-on: windows-latest strategy: matrix: @@ -100,11 +97,7 @@ jobs: profile: minimal toolchain: ${{ matrix.rust }} override: true - - name: Build + - name: Run tests uses: actions-rs/cargo@v1 with: - command: build - # - name: Run tests - # uses: actions-rs/cargo@v1 - # with: - # command: test + command: test |