Skip to content

Bump proptest from 1.9.0 to 1.10.0 #336

Bump proptest from 1.9.0 to 1.10.0

Bump proptest from 1.9.0 to 1.10.0 #336

Workflow file for this run

on:
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
name: Linter and Formatter
jobs:
fmt:
name: Rustfmt
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
runs-on: ubuntu-latest
steps:
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler libprotobuf-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- uses: actions/checkout@v6
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings