diff options
author | Nadrieril | 2020-05-30 14:35:28 +0100 |
---|---|---|
committer | GitHub | 2020-05-30 14:35:28 +0100 |
commit | 97e46bef0fe1729d5de0a9a40ba939842023fea7 (patch) | |
tree | 4ea0c6242c71977b892dd89f706713417fe6cfe9 /.github/workflows | |
parent | f554164014a85b8d4d7248a8bdfa6dbcd2009988 (diff) | |
parent | 5ee2332305110b13deed27338fc2aa0d9fe03e2b (diff) |
Merge pull request #168 from Nadrieril/windows
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/tests.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c0be05c..5d8236c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -78,3 +78,33 @@ jobs: run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - 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 + runs-on: windows-latest + strategy: + matrix: + rust: + - stable + steps: + - name: Checkout branch + uses: actions/checkout@master + with: + submodules: true + - name: Setup Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: ${{ matrix.rust }} + override: true + - name: Build + uses: actions-rs/cargo@v1 + with: + command: build + # - name: Run tests + # uses: actions-rs/cargo@v1 + # with: + # command: test |