Skip to content

fix(deps): update rust crate const_format to 0.2.33 #556

fix(deps): update rust crate const_format to 0.2.33

fix(deps): update rust crate const_format to 0.2.33 #556

name: (Backend Rust) Build and Test
on:
push:
branches: [ "main" ]
paths:
- 'backend/**'
pull_request:
branches: [ "main" ]
paths:
- 'backend/**'
# Set default working directory
defaults:
run:
working-directory: ./backend # Change the working directory to /backend
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose --workspace