Skip to content

feat: seaorm -> sqlx #7

feat: seaorm -> sqlx

feat: seaorm -> sqlx #7

Workflow file for this run

name: CI
permissions: write-all
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
- dev
jobs:
check:
name: cargo check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
name: Clippy Output