Skip to content

Generate enum types from Postgres and MySQL #277

Generate enum types from Postgres and MySQL

Generate enum types from Postgres and MySQL #277

Workflow file for this run

name: clippy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup toolchain install stable --profile minimal
- run: rustup component add clippy
- run: rustup component add rustfmt
- uses: Swatinem/rust-cache@v2
with:
# To only cache runs from `master`:
save-if: ${{ github.ref == 'refs/heads/master' }}
# Specifies what to use as the backend providing cache
# Can be set to either "github" or "buildjet"
# default: "github"
cache-provider: "github"
- name: Run clippy
run: cargo clippy
- name: Run rustfmt
run: cargo fmt -- --check