fix: 除法失效, 一元运算符优先级, 空语句错误 #30
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: Cargo Build & Test | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update nightly && rustup default nightly | |
- run: cargo build --release --verbose | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: target/release/*.* | |
- uses: actions/download-artifact@v4 | |