Skip to content

Add the Database trait #2

Add the Database trait

Add the Database trait #2

Workflow file for this run

name: rust-test
on:
push:
branches-ignore:
- master
paths: 'backend/**'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Clippy
run: |
cd backend
cargo clippy
- name: Run tests
run: |
cd backend
cargo test --verbose