Skip to content

Bump actions/checkout from 3 to 6 #8

Bump actions/checkout from 3 to 6

Bump actions/checkout from 3 to 6 #8

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build Project
run: cargo build --verbose
- name: Run Tests
run: cargo test --verbose
- name: Lint Code with Clippy
run: cargo clippy -- -D warnings
- name: Format Code with Rustfmt
run: cargo fmt -- --check