Skip to content

chore(deps): bump actions/upload-pages-artifact from 2 to 3 (#7) #61

chore(deps): bump actions/upload-pages-artifact from 2 to 3 (#7)

chore(deps): bump actions/upload-pages-artifact from 2 to 3 (#7) #61

Workflow file for this run

name: Rust
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Lint
run: cargo clippy -- -D warnings
- name: Format
run: cargo fmt --check