6724d363ddc1e42248a9cc1bef415a317380efb4
[akkoma] / .woodpecker / .test.yml
1 depends_on:
2 - lint
3
4 matrix:
5 ELIXIR_VERSION:
6 - 1.13
7
8 pipeline:
9 build:
10 image: pleromaforkci/ci-base:${ELIXIR_VERSION}
11 when:
12 event:
13 - push
14 - pull_request
15 environment:
16 MIX_ENV: test
17 commands:
18 - mix local.hex --force
19 - mix local.rebar --force
20 - mix deps.get
21 - mix compile
22
23 test:
24 group: test
25 image: pleromaforkci/ci-base:${ELIXIR_VERSION}
26 when:
27 event:
28 - push
29 - pull_request
30 environment:
31 MIX_ENV: test
32 POSTGRES_DB: pleroma_test
33 POSTGRES_USER: postgres
34 POSTGRES_PASSWORD: postgres
35 DB_HOST: postgres
36 commands:
37 - mix local.hex --force
38 - mix local.rebar --force
39 - mix ecto.drop -f -q
40 - mix ecto.create
41 - mix ecto.migrate
42 - mix test --preload-modules --exclude erratic --exclude federated --max-cases 4
43
44 services:
45 postgres:
46 image: postgres:13
47 environment:
48 POSTGRES_DB: pleroma_test
49 POSTGRES_USER: postgres
50 POSTGRES_PASSWORD: postgres