refactor: 赋值行为expr_set的所有行为独立 #33
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 | |