Skip to content

Refactor database connection from generic based to any #6

Refactor database connection from generic based to any

Refactor database connection from generic based to any #6

Workflow file for this run

name: Conduct code check and run necessary tests
on:
pull_request:
branches:
- dev
workflow_dispatch:
jobs:
check:
name: Check code then run linters and tests
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Run linters
run: cargo clippy
- name: Run tests
run: cargo test