Fix workspace compilation and features shenanigans (#21) #61
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
env: | |
MINIMUM_LINE_COVERAGE_PERCENT: 0 | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update && rustup component add rustfmt | |
- run: cargo fmt --check --all | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update && rustup component add clippy | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo clippy --all-targets --workspace --features postgres -- -D warnings -D clippy::all | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: "true" | |
- uses: isbang/[email protected] | |
with: | |
compose-file: "./tests/postgres.yml" | |
- run: rustup update | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo test --workspace --features postgres | |
env: | |
RUST_BACKTRACE: 1 | |
DATABASE_URL: postgres://atmosphere:atmosphere@localhost:5432 | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install typos-cli || true | |
- run: typos |