-
Notifications
You must be signed in to change notification settings - Fork 13
33 lines (29 loc) · 1 KB
/
testing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Tests to make sure features are setup for running on different platforms & that features run correctly
name: Testing
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
wasm:
if: github.event.pull_request.draft == false
name: WASM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup target add wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- run: cargo build --package dioxus-sdk --verbose --target wasm32-unknown-unknown --no-default-features --features wasm-testing
# need to run tests here
desktop:
if: github.event.pull_request.draft == false
name: Desktop
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- run: cargo build --package dioxus-sdk --verbose --no-default-features --features desktop-testing
- run: cargo test --package dioxus-sdk --verbose --no-default-features --features desktop-testing