Skip to content

Bump actix-web from 4.8.0 to 4.9.0 #273

Bump actix-web from 4.8.0 to 4.9.0

Bump actix-web from 4.8.0 to 4.9.0 #273

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --all-features
- name: Run clippy
run: cargo clippy --all --tests --all-features
- name: Run tests
run: cargo test --all --verbose --all-features
- name: Check formatting
run: cargo fmt -- --check