Skip to content

Merge pull request #4 from Zli-UoA/refactor/create-db-schema-folder #12

Merge pull request #4 from Zli-UoA/refactor/create-db-schema-folder

Merge pull request #4 from Zli-UoA/refactor/create-db-schema-folder #12

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Checkout
uses: actions/checkout@v4
- name: Build project
run: |
cargo build
- name: lint check
run: |
cargo clippy
- name: format check
run: |
cargo fmt --check