Skip to content

Bump serde from 1.0.180 to 1.0.181 #1174

Bump serde from 1.0.180 to 1.0.181

Bump serde from 1.0.180 to 1.0.181 #1174

Workflow file for this run

name: Rust testing
on:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- "src/modlunky2/**"
- "src/tests/**"
- "requirements*.txt"
jobs:
build:
name: "Rust ${{matrix.rust}}"
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
# Test stable and MSRV
rust: [stable, "1.64"]
steps:
- uses: actions/checkout@v3
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
components: clippy rustfmt
- name: cargo fmt
run: cargo fmt --all --check
- name: cargo check
run: cargo check --workspace --all-targets --exclude launcher --locked
- name: cargo clippy
run: cargo clippy --workspace --all-targets --exclude launcher --locked -- -D warnings
- name: cargo test
run: cargo test --workspace --all-targets --exclude launcher --locked
# cargo deny only works on Linux due to using a container
deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: cargo deny check
uses: EmbarkStudios/cargo-deny-action@v1