Skip to content

cargo update

cargo update #22

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- run: cargo check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- run: cargo test
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- run: rustup component add clippy
- run: cargo clippy -- -D warnings