Skip to content

Commit

Permalink
chore: upgrade actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
basdirks-purple committed Mar 31, 2024
1 parent 9681548 commit 98516f2
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,26 @@ name: Rust

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run clippy
run: cargo clippy --verbose
- name: Check formatting
run: cargo fmt --check --verbose
- name: Run tests
run: cargo test --verbose
- name: Build
run: cargo build --verbose
- name: Generate documentation
run: cargo doc --verbose
- uses: actions/checkout@v4
- name: Run clippy
run: cargo clippy --verbose
- name: Check formatting
run: cargo fmt --check --verbose
- name: Run tests
run: cargo test --verbose
- name: Build
run: cargo build --verbose
- name: Generate documentation
run: cargo doc --verbose

0 comments on commit 98516f2

Please sign in to comment.