Execute integration test using futures #491
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
name: Windows i686 | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Rust | |
uses: dtolnay/[email protected] | |
with: | |
targets: i686-pc-windows-msvc | |
- name: Rust cache | |
uses: swatinem/rust-cache@v2 | |
- name: cargo build | |
run: cargo build --target i686-pc-windows-msvc |