Skip to content

Commit b618ee1

Browse files
committed
chore: fixed errors
1 parent 69dd018 commit b618ee1

File tree

10 files changed

+466
-217
lines changed

10 files changed

+466
-217
lines changed

.github/workflows/general.yml

+30-49
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,59 @@
1-
# The name of your workflow. GitHub displays the names of your workflows on your repository's "Actions" tab
21
name: Rust
32

4-
on: [push, pull_request]
3+
on:
4+
# NB: this differs from the book's project!
5+
# These settings allow us to run this specific CI pipeline for PRs against
6+
# this specific branch (a.k.a. book chapter).
7+
push:
8+
branches:
9+
- main
10+
pull_request:
11+
types: [ opened, synchronize, reopened ]
12+
branches:
13+
- main
514

615
env:
716
CARGO_TERM_COLOR: always
817
SQLX_VERSION: 0.6.2
918
SQLX_FEATURES: "rustls,postgres"
1019

11-
# A workflow run is made up of one or more jobs, which run in parallel by default
12-
# Each job runs in a runner environment specified by runs-on
1320
jobs:
14-
# Unique identifier of our job (`job_id`)
1521
test:
16-
# Sets the name `Test` for the job, which is displayed in the GitHub UI
1722
name: Test
18-
# Containers must run in Linux based operating systems
1923
runs-on: ubuntu-latest
20-
# Service containers to run with the `test` container job
2124
services:
22-
# Label used to access the service container
2325
postgres:
24-
# Docker Hub image
25-
image: postgres:13.1
26-
# Set environment variables for the service container
26+
image: postgres:14
2727
env:
2828
POSTGRES_USER: postgres
29-
POSTGRES_PASSWORD: postgres
29+
POSTGRES_PASSWORD: password
3030
POSTGRES_DB: postgres
31-
# Set health checks to wait until the service is ready
32-
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
33-
# Map service container ports to the host ports
3431
ports:
3532
- 5432:5432
3633
redis:
3734
image: redis:7
3835
ports:
3936
- 6379:6379
40-
4137
steps:
42-
# Downloads a copy of the code in your repository before running CI tests
43-
- name: Check out repository code
44-
# The uses keyword specifies that this step will run v3 of the actions/checkout action.
45-
# This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools).
46-
# You should use the checkout action any time your workflow will run against the repository's code.
47-
uses: actions/checkout@v3
48-
49-
# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
50-
- name: Install the Rust toolchain
51-
uses: dtolnay/rust-toolchain@stable
52-
53-
# This GitHub Action caches the Rust toolchain between workflow runs. It is designed for one-line concise usage and good defaults.
38+
- uses: actions/checkout@v3
39+
- uses: dtolnay/rust-toolchain@stable
5440
- uses: Swatinem/rust-cache@v2
5541
with:
56-
# An additional cache key that is added alongside the automatic `job`-based cache key and can be used to further differentiate jobs. default: empty
5742
key: sqlx-${{ env.SQLX_VERSION }}
58-
5943
- name: Install sqlx-cli
6044
run:
6145
cargo install sqlx-cli
6246
--version=${{ env.SQLX_VERSION }}
6347
--features ${{ env.SQLX_FEATURES }}
6448
--no-default-features
6549
--locked
66-
# The --locked flag can be used to force Cargo to use the packaged Cargo.lock file if it is available.
67-
# This may be useful for ensuring reproducible builds, to use the exact same set of dependencies that were available when the package was published.
68-
# It may also be useful if a newer version of a dependency is published that no longer builds on your system, or has other problems
69-
70-
- name: Install postgresql-client
71-
run: sudo apt-get update && sudo apt-get install postgresql-client -y
72-
7350
- name: Migrate database
74-
run: SKIP_DOCKER=true ./scripts/init_db.sh
75-
51+
run: |
52+
sudo apt-get install libpq-dev -y
53+
SKIP_DOCKER=true ./scripts/init_db.sh
7654
- name: Check sqlx-data.json is up-to-date
7755
run: |
78-
cargo sqlx prepare --check -- --bin robust-rust
79-
56+
cargo sqlx prepare --check -- --bin zero2prod
8057
- name: Run tests
8158
run: cargo test
8259

@@ -91,7 +68,6 @@ jobs:
9168
- name: Enforce formatting
9269
run: cargo fmt --check
9370

94-
# `clippy` container job
9571
clippy:
9672
name: Clippy
9773
runs-on: ubuntu-latest
@@ -119,14 +95,13 @@ jobs:
11995
--features ${{ env.SQLX_FEATURES }}
12096
--no-default-features
12197
--locked
122-
- name: Install postgresql-client
123-
run: sudo apt-get update && sudo apt-get install postgresql-client -y
12498
- name: Migrate database
125-
run: SKIP_DOCKER=true ./scripts/init_db.sh
99+
run: |
100+
sudo apt-get install libpq-dev -y
101+
SKIP_DOCKER=true ./scripts/init_db.sh
126102
- name: Linting
127103
run: cargo clippy -- -D warnings
128104

129-
# `coverage` container job
130105
coverage:
131106
name: Code coverage
132107
runs-on: ubuntu-latest
@@ -139,15 +114,21 @@ jobs:
139114
POSTGRES_DB: postgres
140115
ports:
141116
- 5432:5432
117+
redis:
118+
image: redis:7
119+
ports:
120+
- 6379:6379
142121
steps:
143122
- name: Checkout repository
144123
uses: actions/checkout@v3
145124
- uses: dtolnay/rust-toolchain@stable
146-
- name: Install postgresql-client
125+
- name: Install libpq
147126
run: sudo apt-get update && sudo apt-get install postgresql-client -y
148127
- uses: Swatinem/rust-cache@v2
149128
with:
150129
key: sqlx-${{ env.SQLX_VERSION }}
130+
- name: Install tarpaulin
131+
run: cargo install cargo-tarpaulin
151132
- name: Install sqlx-cli
152133
run:
153134
cargo install sqlx-cli
@@ -158,4 +139,4 @@ jobs:
158139
- name: Migrate database
159140
run: SKIP_DOCKER=true ./scripts/init_db.sh
160141
- name: Generate code coverage
161-
run: cargo install cargo-tarpaulin && cargo tarpaulin --verbose --workspace
142+
run: cargo tarpaulin --verbose --workspace

0 commit comments

Comments
 (0)