-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (43 loc) · 1.17 KB
/
rust.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
name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: news
POSTGRES_PASSWORD: news
POSTGRES_DB: news
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Install postgres client
run: sudo apt-get install -y postgresql-client
- name: Setup tables
run: psql "postgres://news:news@localhost/news" -a -f "sql/0-create_tables.sql"
- name: Prepare directories
run: mkdir -p data/profile-pictures
- name: Check code
run: cargo check --quiet
env:
DATABASE_URL: "postgres://news:news@localhost/news"
- name: Check format
run: cargo fmt --check
- name: Clippy
run: cargo clippy --quiet
env:
DATABASE_URL: "postgres://news:news@localhost/news"
- name: Run tests
run: cargo test --quiet
env:
DATABASE_URL: "postgres://news:news@localhost/news"