Skip to content

Commit

Permalink
Create windows_msvc.yml
Browse files Browse the repository at this point in the history
Add windows msvc toolchain
  • Loading branch information
rgiot committed Oct 8, 2023
1 parent 183f175 commit 1e5715b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/windows_msvc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Windows build

on:
push:
branches: [ main ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build-windows:

runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- run: git submodule update --init --recursive
- uses: houseabsolute/actions-rust-cross@v0
with:
target: x86_64-pc-windows-msvc
command: test
toolchain: nightly-x86_64-pc-windows-msvc
args: --release

0 comments on commit 1e5715b

Please sign in to comment.