Skip to content

Merge pull request #5 from figsoda/dependabot/github_actions/actions/… #102

Merge pull request #5 from figsoda/dependabot/github_actions/actions/…

Merge pull request #5 from figsoda/dependabot/github_actions/actions/… #102

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