-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (50 loc) · 1.42 KB
/
backend.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
on:
workflow_call:
pull_request:
schedule:
- cron: '30 3 * * 2'
name: Backend
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
services:
postgres:
image: mdillon/postgis:11
env:
POSTGRES_USER: flugbuech
POSTGRES_PASSWORD: flugbuech
POSTGRES_DB: flugbuech_test
ports:
- 5432:5432
# Needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y libpq-dev
- uses: dtolnay/rust-toolchain@1.76.0
- name: Run check
run: cargo check --all-features
- name: Run tests
run: cargo test --all-features
env:
TEST_DATABASE_URL: 'postgres://flugbuech:flugbuech@localhost:5432/flugbuech_test'
clippy:
name: Run clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y libpq-dev
- uses: dtolnay/rust-toolchain@1.76.0
with:
components: clippy
- run: cargo clippy --all-features
rustfmt:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.76.0
with:
components: rustfmt
- run: cargo fmt -- --check