Skip to content

ci: Replace deprecated actions-rs with run: cargo ... and drop ni… #70

ci: Replace deprecated actions-rs with run: cargo ... and drop ni…

ci: Replace deprecated actions-rs with run: cargo ... and drop ni… #70

Workflow file for this run

on: [push, pull_request]
name: Continuous integration
jobs:
check:
name: Check and Lint
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Cargo check
run: cargo check --workspace --all-targets
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --workspace --all-targets -- -D warnings