Skip to content

Cargo workflow

Cargo workflow #6

Workflow file for this run

name: cargo
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- run: ./configure
- run: cargo test
- run: cargo fmt --check
- run: cargo clippy