fix(deps): update rust crate clap to v4.5.28 #107
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: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup component add clippy | |
- uses: giraffate/clippy-action@v1 | |
with: | |
reporter: 'github-pr-review' | |
github_token: ${{ secrets.GH_TOKEN }} | |
level: info | |
clippy_flags: -- -Dwarnings | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup minikube | |
id: minikube | |
uses: medyagh/setup-minikube@latest | |
with: | |
start: false | |
- uses: actions/checkout@v4 | |
- name: setup test cluster | |
run: make prepare_tests | |
- name: run tests | |
run: make test | |
- uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Collect Coverage | |
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 |