Skip to content

build(deps): bump tempfile from 3.5.0 to 3.7.0 #789

build(deps): bump tempfile from 3.5.0 to 3.7.0

build(deps): bump tempfile from 3.5.0 to 3.7.0 #789

Workflow file for this run

name: Workspace
on:
pull_request: {}
push:
branches: main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.68.0 # MSRV
components: clippy
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all --all-features -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check