Skip to content

Bump axum from 0.8.6 to 0.8.7 in the minor-and-patch group #7

Bump axum from 0.8.6 to 0.8.7 in the minor-and-patch group

Bump axum from 0.8.6 to 0.8.7 in the minor-and-patch group #7

Workflow file for this run

name: Build Checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose