Skip to content

Bump actions/checkout from 3 to 4 #100

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #100

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: "Cargo: test, clippy, fmt"
run: |
rustup toolchain install stable --profile minimal -c clippy
rustup toolchain install nightly --profile minimal -c rustfmt
cargo +stable test
cargo +stable clippy -- -D warnings
cargo +nightly fmt -- --check