Skip to content

Add workflow_dispatch to workflow to allow manual triggering #4

Add workflow_dispatch to workflow to allow manual triggering

Add workflow_dispatch to workflow to allow manual triggering #4

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo build --verbose
- run: cargo test --verbose
- run: cargo clippy --verbose
- run: cargo fmt --verbose