Skip to content

chore(deps): update ghcr.io/dragonflydb/dragonfly docker tag to v1.23.0 #559

chore(deps): update ghcr.io/dragonflydb/dragonfly docker tag to v1.23.0

chore(deps): update ghcr.io/dragonflydb/dragonfly docker tag to v1.23.0 #559

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