Skip to content

Bump serde from 1.0.215 to 1.0.216 in the minor group (#162) #391

Bump serde from 1.0.215 to 1.0.216 in the minor group (#162)

Bump serde from 1.0.215 to 1.0.216 in the minor group (#162) #391

Workflow file for this run

name: CI
on:
pull_request:
push:
paths-ignore:
- '.github/workflows/release.yaml'
- 'README.md'
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Set Timezone
uses: szenius/[email protected]
with:
timezoneLinux: "America/Los_Angeles"
- name: Test
run: cargo test --verbose
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check Format
run: cargo fmt --all -- --check
- name: Check Clippy
run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::pedantic