Skip to content

build(deps): update axum requirement from 0.6.20 to 0.7.1 #174

build(deps): update axum requirement from 0.6.20 to 0.7.1

build(deps): update axum requirement from 0.6.20 to 0.7.1 #174

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --all-targets --all-features --verbose
- name: Run tests
run: cargo test --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Fmt
run: cargo fmt --all -- --check
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0