Skip to content

Upgrade dependencies #53

Upgrade dependencies

Upgrade dependencies #53

Workflow file for this run

on: [push, pull_request]
name: Continuous integration
jobs:
check:
name: Compile and Test
strategy:
matrix:
rust:
- nightly
- stable
# MSRV - Required by the build-info crate
- 1.70.0
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --verbose
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose