Skip to content

Bump serde from 1.0.207 to 1.0.209 #214

Bump serde from 1.0.207 to 1.0.209

Bump serde from 1.0.207 to 1.0.209 #214

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Code Formatting
run: cargo fmt --check
- name: Build
run: cargo build
- name: Run tests
run: cargo test