Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

build(deps): Bump serde from 1.0.175 to 1.0.176 #692

build(deps): Bump serde from 1.0.175 to 1.0.176

build(deps): Bump serde from 1.0.175 to 1.0.176 #692

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Build
run: cargo +nightly build --verbose
- name: Run tests
run: cargo +nightly test --verbose