Skip to content

Bump crate version to 0.19.0 #107

Bump crate version to 0.19.0

Bump crate version to 0.19.0 #107

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
name: Build and test
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Deploy toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Run build
uses: actions-rs/cargo@v1
with:
command: build
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
name: Clippy results (${{ matrix.rust }})