Skip to content

Add: Add unworking impl #71

Add: Add unworking impl

Add: Add unworking impl #71

Workflow file for this run

name: Cargo check
on:
pull_request:
branches:
- '*'
push:
branches:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/[email protected]
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Run tests
run: cargo test --verbose
- name: Audit Dependencies
run: cargo audit
- name: Install rustfmt
run: rustup component add rustfmt --toolchain ${{ matrix.toolchain }}
- name: Check formatting
run: cargo fmt -- --check
- name: Install clippy
run: rustup component add clippy --toolchain ${{ matrix.toolchain }}
- name: Run Clippy
run: cargo clippy --all --all-targets -- -D warnings