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-13 19:47:04 +00:00
|
|
|
- root-chapter-11
|
2020-12-05 19:14:22 +00:00
|
|
|
pull_request:
|
|
|
|
types: [ opened, synchronize, reopened ]
|
|
|
|
branches:
|
2022-03-13 19:47:04 +00:00
|
|
|
- root-chapter-11
|
2020-08-23 11:00:32 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-25 21:19:53 +00:00
|
|
|
services:
|
|
|
|
postgres:
|
2020-12-05 19:14:22 +00:00
|
|
|
image: postgres:12
|
|
|
|
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:
|
|
|
|
image: redis:6
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
2021-08-31 21:13:44 +00:00
|
|
|
env:
|
2021-09-27 16:10:57 +00:00
|
|
|
SQLX_VERSION: 0.5.7
|
2021-08-31 21:13:44 +00:00
|
|
|
SQLX_FEATURES: postgres
|
2020-08-23 11:00:32 +00:00
|
|
|
steps:
|
2021-08-31 21:13:44 +00:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-02-15 09:21:49 +00:00
|
|
|
- name: Cache dependencies
|
|
|
|
id: cache-dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
2021-08-31 21:13:44 +00:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
2020-08-23 11:00:32 +00:00
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
2021-08-31 21:13:44 +00:00
|
|
|
|
|
|
|
- name: Cache sqlx-cli
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: cache-sqlx
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/sqlx
|
2021-09-27 16:10:57 +00:00
|
|
|
~/.cargo/bin/cargo-sqlx
|
2021-08-31 21:13:44 +00:00
|
|
|
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
|
|
|
|
|
|
|
|
- name: Install sqlx-cli
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
if: steps.cache-sqlx.outputs.cache-hit == false
|
|
|
|
with:
|
|
|
|
command: install
|
|
|
|
args: >
|
|
|
|
sqlx-cli
|
|
|
|
--force
|
|
|
|
--version=${{ env.SQLX_VERSION }}
|
|
|
|
--features=${{ env.SQLX_FEATURES }}
|
|
|
|
--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-08-31 21:13:44 +00:00
|
|
|
|
2021-09-27 16:10:57 +00:00
|
|
|
- name: Check sqlx-data.json is up-to-date
|
|
|
|
run: |
|
|
|
|
cargo sqlx prepare --check -- --bin zero2prod
|
|
|
|
|
2021-08-31 21:13:44 +00:00
|
|
|
- name: Run cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
2020-08-23 11:00:32 +00:00
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
|
|
|
|
fmt:
|
|
|
|
name: Rustfmt
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
2021-01-23 17:48:23 +00:00
|
|
|
components: rustfmt
|
2020-08-23 11:00:32 +00:00
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
|
|
|
|
clippy:
|
|
|
|
name: Clippy
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-25 21:19:53 +00:00
|
|
|
services:
|
|
|
|
postgres:
|
2020-12-05 19:14:22 +00:00
|
|
|
image: postgres:12
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: password
|
|
|
|
POSTGRES_DB: postgres
|
2020-08-25 21:19:53 +00:00
|
|
|
ports:
|
|
|
|
- 5432:5432
|
2021-08-31 21:13:44 +00:00
|
|
|
env:
|
2021-09-27 16:10:57 +00:00
|
|
|
SQLX_VERSION: 0.5.7
|
2021-08-31 21:13:44 +00:00
|
|
|
SQLX_FEATURES: postgres
|
2020-08-23 11:00:32 +00:00
|
|
|
steps:
|
2021-08-31 21:13:44 +00:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install stable toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
2020-08-23 11:00:32 +00:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
2021-01-23 17:48:23 +00:00
|
|
|
components: clippy
|
2020-08-23 11:00:32 +00:00
|
|
|
override: true
|
2021-08-31 21:13:44 +00:00
|
|
|
|
|
|
|
- name: Cache sqlx-cli
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: cache-sqlx
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/sqlx
|
|
|
|
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
|
|
|
|
|
|
|
|
- name: Install sqlx-cli
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
if: steps.cache-sqlx.outputs.cache-hit == false
|
|
|
|
with:
|
|
|
|
command: install
|
|
|
|
args: >
|
|
|
|
sqlx-cli
|
|
|
|
--force
|
|
|
|
--version=${{ env.SQLX_VERSION }}
|
|
|
|
--features=${{ env.SQLX_FEATURES }}
|
|
|
|
--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-08-31 21:13:44 +00:00
|
|
|
|
|
|
|
- name: Run clippy
|
|
|
|
uses: actions-rs/clippy-check@v1
|
2020-08-23 11:00:32 +00:00
|
|
|
with:
|
2021-01-23 17:48:23 +00:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2020-08-23 11:00:32 +00:00
|
|
|
args: -- -D warnings
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
name: Code coverage
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-25 21:19:53 +00:00
|
|
|
services:
|
|
|
|
postgres:
|
2020-12-05 19:14:22 +00:00
|
|
|
image: postgres:12
|
|
|
|
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:
|
|
|
|
image: redis:6
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
2021-08-31 21:13:44 +00:00
|
|
|
env:
|
2021-09-27 16:10:57 +00:00
|
|
|
SQLX_VERSION: 0.5.7
|
2021-08-31 21:13:44 +00:00
|
|
|
SQLX_FEATURES: postgres
|
2020-08-23 11:00:32 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install stable toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
|
2021-08-31 21:13:44 +00:00
|
|
|
- name: Cache sqlx-cli
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: cache-sqlx
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/sqlx
|
|
|
|
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
|
|
|
|
|
|
|
|
- name: Install sqlx-cli
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
if: steps.cache-sqlx.outputs.cache-hit == false
|
|
|
|
with:
|
|
|
|
command: install
|
|
|
|
args: >
|
|
|
|
sqlx-cli
|
|
|
|
--force
|
|
|
|
--version=${{ env.SQLX_VERSION }}
|
|
|
|
--features=${{ env.SQLX_FEATURES }}
|
|
|
|
--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-08-31 21:13:44 +00:00
|
|
|
|
2020-08-23 11:00:32 +00:00
|
|
|
- name: Run cargo-tarpaulin
|
|
|
|
uses: actions-rs/tarpaulin@v0.1
|
|
|
|
with:
|
2021-08-01 20:03:11 +00:00
|
|
|
args: '--ignore-tests --avoid-cfg-tarpaulin'
|