Runs unit tests on windows

pull/96/head
Tpt 4 years ago
parent 477d1cb930
commit 45405b4bce
  1. 14
      .github/workflows/build.yml

@ -39,6 +39,20 @@ jobs:
env: env:
RUST_BACKTRACE: 1 RUST_BACKTRACE: 1
test_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: rustup update
- run: Remove-Item -LiteralPath "C:\msys64\" -Force -Recurse
- run: choco install llvm -y
- run: cargo build
- run: cargo test --verbose --all --all-features --exclude pyoxigraph
env:
RUST_BACKTRACE: 1
js: js:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

Loading…
Cancel
Save