-
Notifications
You must be signed in to change notification settings - Fork 18
60 lines (55 loc) · 1.49 KB
/
test.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
56
57
58
59
60
name: Test
on:
push:
branches:
- main
pull_request:
workflow_call:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/.github/actions/install_gleam@main
with:
gleam_version: ${{inputs.gleam_version}}
erlang_version: ${{inputs.erlang_version}}
- uses: TanklesXL/gleam_actions/.github/actions/format@main
deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/.github/actions/install_gleam@main
with:
gleam_version: 1.4.1
erlang_version: 27
- uses: TanklesXL/gleam_actions/.github/actions/deps_cache@main
with:
gleam_version: 1.4.1
test:
runs-on: ubuntu-latest
needs: deps
strategy:
fail-fast: true
matrix:
erlang: ["26", "27"]
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/.github/actions/deps_restore@main
- uses: TanklesXL/gleam_actions/.github/actions/install_gleam@main
with:
gleam_version: 1.4.1
erlang_version: ${{ matrix.erlang }}
- uses: TanklesXL/gleam_actions/.github/actions/test@main
with:
target: "erlang"
services:
postgres:
image: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432