chore(deps): bump serde from 1.0.175 to 1.0.176 (#244) #736
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
name: Test | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout 🛎️ | |
- uses: actions-rs/toolchain@v1 | |
name: Setup Cargo Toolchain 🛎️ | |
with: | |
components: rustfmt, clippy | |
profile: minimal | |
toolchain: stable | |
default: true | |
- uses: extractions/setup-just@v1 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run Lints 🔨 | |
run: just ci | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout 🛎️ | |
- uses: actions-rs/toolchain@v1 | |
name: Setup Cargo Toolchain 🛎️ | |
with: | |
profile: minimal | |
toolchain: stable | |
default: true | |
- uses: extractions/setup-just@v1 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Running 🚀 | |
run: just test-full | |
doc_test: | |
name: Doc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout 🛎️ | |
- uses: actions-rs/toolchain@v1 | |
name: Setup Cargo Toolchain 🛎️ | |
with: | |
components: rust-docs | |
profile: minimal | |
toolchain: stable | |
default: true | |
- uses: extractions/setup-just@v1 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Building Docs 🚀 | |
run: just doc-all |