Skip to content

fix(deps): update all #160

fix(deps): update all

fix(deps): update all #160

Workflow file for this run

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