Upgrade Rust version to 1.83.0 #53
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" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test_solutions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install Rust toolchain" | |
uses: dtolnay/rust-toolchain@1.83.0 | |
- name: "Build all workspace solutions" | |
run: cargo build | |
- name: "Run tests on all workspace solutions" | |
run: cargo test |