Skip to content
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.

fix(deps): update rust crate serde to 1.0.185 #363

fix(deps): update rust crate serde to 1.0.185

fix(deps): update rust crate serde to 1.0.185 #363

Workflow file for this run

name: CI
on: [push]
jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
strategy:
matrix:
package: [runner, client, server]
rust: [nightly]
name: Clippy (${{ matrix.package }})
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: full
RUSTV: ${{ matrix.rust }}
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Cargo Cache
uses: actions/cache@v3
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }}
${{ runner.os }}-cargo
- name: Cargo Target Cache
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.toml') }}
${{ runner.os }}-cargo-target
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --release --bin ${{ matrix.package }} -- -D warnings