cef7436433bc540d05854968ef5d93385af6a9b7
[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 environment:
15 MIX_ENV: test
16 commands:
17 - mix local.hex --force
18 - mix local.rebar --force
19 - mix deps.get
20 - mix compile
21
22 test:
23 group: test
24 image: pleromaforkci/ci-base:${ELIXIR_VERSION}
25 when:
26 event:
27 - push
28 environment:
29 MIX_ENV: test
30 POSTGRES_DB: pleroma_test
31 POSTGRES_USER: postgres
32 POSTGRES_PASSWORD: postgres
33 DB_HOST: postgres
34 commands:
35 - mix local.hex --force
36 - mix local.rebar --force
37 - mix ecto.drop -f -q
38 - mix ecto.create
39 - mix ecto.migrate
40 - mix test --preload-modules --exclude erratic --exclude federated --max-cases 4
41
42 services:
43 postgres:
44 image: postgres:13
45 environment:
46 POSTGRES_DB: pleroma_test
47 POSTGRES_USER: postgres
48 POSTGRES_PASSWORD: postgres