Skip to content

docs: prepare for 0.3.0 release #4

docs: prepare for 0.3.0 release

docs: prepare for 0.3.0 release #4

Workflow file for this run

name: CI
on: push
jobs:
lint:
strategy:
matrix:
include:
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Rust Toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
components: clippy
- name: Run Clippy
run: cargo clippy --no-deps -- -D clippy::all