This repository has been archived by the owner on May 18, 2024. It is now read-only.
Bump serde from 1.0.197 to 1.0.201 #601
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 CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- run: cargo fmt -- --check | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- run: | | |
cargo clippy --fix -- \ | |
-W clippy::pedantic \ | |
-W clippy::nursery \ | |
-W clippy::unwrap_used \ | |
-W clippy::expect_used | |
end-to-end-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- run: make build | |
- uses: helm/[email protected] | |
with: | |
wait: 120s | |
- run: make test-e2e |