Skip to content

Update crc requirement from 1.8.1 to 3.2.0 #67

Update crc requirement from 1.8.1 to 3.2.0

Update crc requirement from 1.8.1 to 3.2.0 #67

Workflow file for this run

name: Tests & lints
on: [push, pull_request]
jobs:
build_and_test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features
clippy:
name: Clippy checks
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install nightly toolchain and cargo-clippy
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: clippy
override: true
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --release --all-features