zero-to-production/.github/workflows/general.yml

143 lines
3.7 KiB
YAML
Raw Normal View History

2020-08-23 11:00:32 +00:00
name: Rust
2020-12-05 19:14:22 +00:00
on:
# NB: this differs from the book's project!
# These settings allow us to run this specific CI pipeline for PRs against
# this specific branch (a.k.a. book chapter).
push:
branches:
2022-03-14 11:09:16 +00:00
- main
2020-12-05 19:14:22 +00:00
pull_request:
types: [ opened, synchronize, reopened ]
branches:
2022-03-14 11:09:16 +00:00
- main
2020-08-23 11:00:32 +00:00
env:
CARGO_TERM_COLOR: always
2023-09-14 07:43:32 +00:00
SQLX_VERSION: 0.7.1
2023-02-18 16:24:47 +00:00
SQLX_FEATURES: "rustls,postgres"
2020-08-23 11:00:32 +00:00
jobs:
test:
name: Test
runs-on: ubuntu-latest
2020-08-25 21:19:53 +00:00
services:
postgres:
image: postgres:14
2020-12-05 19:14:22 +00:00
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
2020-08-25 21:19:53 +00:00
ports:
- 5432:5432
2022-03-13 15:41:39 +00:00
redis:
2023-02-18 16:24:47 +00:00
image: redis:7
2022-03-13 15:41:39 +00:00
ports:
- 6379:6379
2020-08-23 11:00:32 +00:00
steps:
2023-02-18 16:24:47 +00:00
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
2021-08-31 21:13:44 +00:00
with:
2023-02-18 16:24:47 +00:00
key: sqlx-${{ env.SQLX_VERSION }}
2022-10-01 17:07:52 +00:00
- name: Install sqlx-cli
2023-02-18 16:24:47 +00:00
run:
cargo install sqlx-cli
2021-08-31 21:13:44 +00:00
--version=${{ env.SQLX_VERSION }}
2022-10-01 17:07:52 +00:00
--features ${{ env.SQLX_FEATURES }}
2021-08-31 21:13:44 +00:00
--no-default-features
--locked
2020-08-25 21:19:53 +00:00
- name: Migrate database
run: |
sudo apt-get install libpq-dev -y
2020-12-05 19:14:22 +00:00
SKIP_DOCKER=true ./scripts/init_db.sh
2021-09-27 16:10:57 +00:00
- name: Check sqlx-data.json is up-to-date
run: |
2023-09-14 07:43:32 +00:00
cargo sqlx prepare --workspace --check
2023-02-18 16:24:47 +00:00
- name: Run tests
run: cargo test
2020-08-23 11:00:32 +00:00
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
2023-02-18 16:24:47 +00:00
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
2020-08-23 11:00:32 +00:00
with:
2021-01-23 17:48:23 +00:00
components: rustfmt
2023-02-18 16:24:47 +00:00
- name: Enforce formatting
run: cargo fmt --check
2020-08-23 11:00:32 +00:00
clippy:
name: Clippy
runs-on: ubuntu-latest
2020-08-25 21:19:53 +00:00
services:
postgres:
image: postgres:14
2020-12-05 19:14:22 +00:00
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
2020-08-25 21:19:53 +00:00
ports:
- 5432:5432
2020-08-23 11:00:32 +00:00
steps:
2023-02-18 16:24:47 +00:00
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
2020-08-23 11:00:32 +00:00
with:
2021-01-23 17:48:23 +00:00
components: clippy
2023-02-18 16:24:47 +00:00
- uses: Swatinem/rust-cache@v2
2021-08-31 21:13:44 +00:00
with:
2023-02-18 16:24:47 +00:00
key: sqlx-${{ env.SQLX_VERSION }}
- name: Install sqlx-cli
run:
cargo install sqlx-cli
2021-08-31 21:13:44 +00:00
--version=${{ env.SQLX_VERSION }}
2022-10-01 17:07:52 +00:00
--features ${{ env.SQLX_FEATURES }}
2021-08-31 21:13:44 +00:00
--no-default-features
--locked
2020-08-25 21:19:53 +00:00
- name: Migrate database
run: |
sudo apt-get install libpq-dev -y
2020-12-05 19:14:22 +00:00
SKIP_DOCKER=true ./scripts/init_db.sh
2023-02-18 16:24:47 +00:00
- name: Linting
run: cargo clippy -- -D warnings
2020-08-23 11:00:32 +00:00
coverage:
name: Code coverage
runs-on: ubuntu-latest
2020-08-25 21:19:53 +00:00
services:
postgres:
image: postgres:14
2020-12-05 19:14:22 +00:00
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
2020-08-25 21:19:53 +00:00
ports:
- 5432:5432
2022-03-13 15:41:39 +00:00
redis:
2023-02-18 16:24:47 +00:00
image: redis:7
2022-03-13 15:41:39 +00:00
ports:
- 6379:6379
2020-08-23 11:00:32 +00:00
steps:
- name: Checkout repository
2023-02-18 16:24:47 +00:00
uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install libpq
run: sudo apt-get update && sudo apt-get install postgresql-client -y
- uses: Swatinem/rust-cache@v2
2021-08-31 21:13:44 +00:00
with:
2023-02-18 16:24:47 +00:00
key: sqlx-${{ env.SQLX_VERSION }}
- name: Install tarpaulin
run: cargo install cargo-tarpaulin
- name: Install sqlx-cli
run:
cargo install sqlx-cli
--version=${{ env.SQLX_VERSION }}
--features ${{ env.SQLX_FEATURES }}
--no-default-features
--locked
2020-08-25 21:19:53 +00:00
- name: Migrate database
2023-02-18 16:24:47 +00:00
run: SKIP_DOCKER=true ./scripts/init_db.sh
- name: Generate code coverage
run: cargo tarpaulin --verbose --workspace