Skip to content

chore(deps): bump the backend-dependencies group in /backend with 2 updates #49

chore(deps): bump the backend-dependencies group in /backend with 2 updates

chore(deps): bump the backend-dependencies group in /backend with 2 updates #49

Workflow file for this run

name: Cargo test & clippy
on:
push:
branches: ["main"]
paths:
- "backend/**"
pull_request:
branches: ["main"]
paths:
- "backend/**"
env:
CARGO_TERM_COLOR: always
jobs:
task:
defaults:
run:
working-directory: ./backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run clippy
run: cargo clippy --all-features