Skip to content

Bump strum from 0.26.3 to 0.27.0 #578

Bump strum from 0.26.3 to 0.27.0

Bump strum from 0.26.3 to 0.27.0 #578

Workflow file for this run

name: ci
on:
pull_request:
branches: ["main"]
env:
RUST_VERSION: "1.81.0"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
components: clippy, rustfmt
- name: Rust cargo format
run: cargo fmt --all -- --check
- name: Rust cargo clippy
run: cargo clippy -- -D warnings
- name: Rust cargo test
run: cargo test
- name: Rust cargo build
run: cargo build --locked