Generate enum types from Postgres and MySQL #277
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |