Skip to content

Bump the npm group across 1 directory with 10 updates #1157

Bump the npm group across 1 directory with 10 updates

Bump the npm group across 1 directory with 10 updates #1157

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
working-directory: foodi-backend
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [nightly]
steps:
- uses: actions/checkout@v4
- uses: brndnmtthws/rust-action@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Check formatting
run: cargo fmt --all -- --check