Skip to content

Prepare for release v0.0.6 #119

Prepare for release v0.0.6

Prepare for release v0.0.6 #119

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
toolchain:
- nightly
cargo_flags:
- "--no-default-features"
- "--all-features"
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- --deny warnings
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all ${{ matrix.cargo_flags }}
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --all ${{ matrix.cargo_flags }}