Skip to content

chore(deps): bump serde from 1.0.196 to 1.0.206 #3900

chore(deps): bump serde from 1.0.196 to 1.0.206

chore(deps): bump serde from 1.0.196 to 1.0.206 #3900

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- "**.md"
- "documentation/**"
- "docker/**"
branches:
- main
pull_request:
paths-ignore:
- "**.md"
- "documentation/**"
- "docker/**"
types:
- opened
- reopened
- synchronize
- ready_for_review
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-and-test:
name: "check and test"
uses: ./.github/workflows/_check.yml
with: { os: ubuntu-latest, rust: stable }
test-int:
name: "integration tests"
uses: ./.github/workflows/_test_int.yml
with: { os: ubuntu-latest, rust: stable, mongodb: "6.0" }
format:
uses: ./.github/workflows/_fmt.yml
with: { os: ubuntu-latest, rust: nightly }
clippy:
if: ${{ !github.event.pull_request.draft }}
uses: ./.github/workflows/_clippy.yml
with: { os: ubuntu-latest, rust: stable }
check-toml:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- uses: actions-rs/cargo@v1
with:
command: install
args: --force cargo-sort
- uses: actions-rs/cargo@v1
with:
command: ci-toml
docs:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- uses: Swatinem/rust-cache@v1
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions-rs/cargo@v1
with:
command: ci-doc
check-all-features:
if: ${{ !github.event.pull_request.draft }}
uses: ./.github/workflows/_features.yml