Skip to content

Commit

Permalink
Add github workflow for windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
bamidev committed Mar 10, 2024
1 parent 05c9fe0 commit 0303013
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,16 @@ jobs:
- name: Build with Edge WebView2 (MinGW)
run: cargo build --verbose --features edge2 --target=x86_64-pc-windows-gnu
- name: Run tests
run: RUST_BACKTRACE=full RUST_LOG=debug xvfb-run cargo test --verbose --features webkitgtk
run: RUST_BACKTRACE=full RUST_LOG=debug xvfb-run cargo test --verbose --features webkitgtk

build-windows:
runs-on: windows-latest
steps:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions/checkout@v3
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --features edge2

0 comments on commit 0303013

Please sign in to comment.