Merge pull request #269 from arkedge/renovate/url-2.x-lockfile #1420
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 | |
tags: | |
- v* | |
pull_request: | |
merge_group: | |
env: | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Rust toolchain | |
id: toolchain | |
run: | | |
awk -F'[ ="]+' '$1 == "channel" { print "toolchain=" $2 }' rust-toolchain >> "$GITHUB_OUTPUT" | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: ${{ steps.toolchain.outputs.toolchain }} | |
components: clippy | |
- name: cache dependencies | |
uses: Swatinem/[email protected] | |
- name: reviewdog / clippy | |
uses: sksat/[email protected] | |
with: | |
reporter: github-pr-review | |
- name: unit test | |
run: | | |
cargo test |