build(deps): bump openssl from 0.10.66 to 0.10.68 #284
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: Rust | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
checks: | |
name: Rust checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: davidB/rust-cargo-make@v1 | |
- uses: actions/checkout@v4 | |
- name: Run format | |
run: cargo make format | |
- name: Run check | |
run: cargo make check | |
- name: Run clippy | |
run: cargo make clippy | |
- name: Run test | |
run: cargo make test |