Skip to content

feat(release): add cargo-dist #1

feat(release): add cargo-dist

feat(release): add cargo-dist #1

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 for "an unknown tool name found in scoped lint: `rustdoc::broken_intra_doc_links`"
- 1.52.1
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