Bump depencies and prepare to release from Main instead of a release Branch #72
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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
cargo_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update local toolchain | |
run: | | |
rustup update | |
rustup install stable | |
- name: Test | |
run: | | |
cargo check | |
cargo test --all | |
- name: Build | |
run: | | |
cargo build --release |