Skip to content

Fix build warnings and a few assorted tweaks #10

Fix build warnings and a few assorted tweaks

Fix build warnings and a few assorted tweaks #10

Workflow file for this run

name: Check multiple platforms
on:
pull_request:
paths:
- '**.rs'
- '**/Cargo.toml'
env:
CARGO_TERM_COLOR: always
jobs:
check-targets:
if: ${{ github.event.label.name == 'ready-to-merge' }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all --features=bincoded,derive