-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (96 loc) · 2.57 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Retrack
on:
push:
branches: [ main ]
paths-ignore:
- 'Dockerfile'
- 'Dockerfile.*'
- '*.md'
- 'retrack.toml'
- '.husky/**'
- 'dev/**'
env:
CARGO_TERM_COLOR: always
DATABASE_URL: postgres://postgres@localhost:5432/retrack
RUST_LOG: debug
jobs:
ci:
name: API Build (Linux)
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
rust: [ stable ]
services:
postgres:
image: postgres:latest
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
name: Checkout
- name: Install Protoc
uses: arduino/setup-protoc@v3
# Always install nightly toolchain for `Rustfmt`.
- name: Install toolchain ${{ matrix.rust }}
run: |
rustup toolchain install ${{ matrix.rust }} nightly
rustup override set ${{ matrix.rust }}
rustup component add clippy
rustup component add --toolchain nightly rustfmt
cargo install --force sqlx-cli
- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
- name: Check format
run: cargo +nightly fmt --all -- --check
- name: Create test database
run: |
cargo sqlx database create
cargo sqlx migrate run
- name: Test (default features)
timeout-minutes: 6
run: cargo test -- --nocapture
- name: Check database schema
run: cargo sqlx prepare --check
- name: Build (default features)
run: cargo build --release
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
ci-web-scraper:
name: Web Scraper Build (Linux)
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
name: Checkout
- name: Set Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install dependencies
run: npm ci --ws
- name: Test
run: npm test -w components/retrack-web-scraper
- name: Build
run: npm run build -w components/retrack-web-scraper
# ci-control-center:
# name: Build (Linux)
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# name: Checkout
#
# - name: Set Node.js 20.x
# uses: actions/setup-node@v3
# with:
# node-version: 20.x
# cache: 'npm'
#
# - name: Install dependencies
# run: npm ci
#
# - name: Build
# run: npm run build --ws