Skip to content

fix: service does not log errors to the console #11

fix: service does not log errors to the console

fix: service does not log errors to the console #11

Workflow file for this run

name: Rust
on:
push:
branches: ['main']
pull_request:
branches: ['main']
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --manifest-path backend/Cargo.toml
- name: Run tests
run: cargo test --manifest-path backend/Cargo.toml