Generate function bind #54
Workflow file for this run
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
name: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - run: rustup toolchain install stable-gnu | |
- run: rustup default stable-gnu | |
- run: rustup component add rustfmt | |
- run: rustup show | |
- run: rustup component list --installed | |
- run: cargo --version | |
- run: choco --version | |
- run: choco install mingw -y | |
- run: set | |
- run: cc --version | |
- run: cargo install cargo-make | |
- run: cargo make build-plain -vv | |
- run: cargo test _ci -- --nocapture | |
- run: rustup component add clippy | |
- run: cargo clippy |