Skip to content

Update thank you message for clarity and enhance header styling #424

Update thank you message for clarity and enhance header styling

Update thank you message for clarity and enhance header styling #424

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
types:
- opened
- synchronize
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
needs: build