fix(deps): update rust crate serde to v1.0.214 #253
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 ] | |
workflow_dispatch: | |
inputs: | |
verbose: | |
description: 'Output verbose build information' | |
required: true | |
type: boolean | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: upgrade | |
run: rustup override set nightly | |
- name: nightly-clippy | |
run: rustup component add clippy --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: build | |
if: ${{ github.event.inputs.verbose != 'true' }} | |
run: cargo build | |
- name: build-verbose | |
if: ${{ github.event.inputs.verbose == 'true' }} | |
run: cargo build --verbose | |
- name: lint | |
run: cargo clippy --all-targets --all-features -- -D warnings |