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