Skip to content

Migrations on startup + Dockerfile #1

Migrations on startup + Dockerfile

Migrations on startup + Dockerfile #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.79
components: clippy, rustfmt
- run: make lint
- run: make fmt
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features