Skip to content

Upgrade Rust version to 1.83.0 #53

Upgrade Rust version to 1.83.0

Upgrade Rust version to 1.83.0 #53

Workflow file for this run

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