Skip to content

Bump serde from 1.0.180 to 1.0.185 #122

Bump serde from 1.0.180 to 1.0.185

Bump serde from 1.0.180 to 1.0.185 #122

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
all:
name: Check, rustfmt, clippy
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Install packages
run: sudo apt-get update && sudo apt-get install librust-atk-dev libgtk-3-dev
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings