-
Notifications
You must be signed in to change notification settings - Fork 11
59 lines (53 loc) · 1.37 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
name: Test
env:
GLEAM_VERSION: "1.1.0"
ERLANG_VERSION: 26
on:
push:
branches:
- main
pull_request:
workflow_call:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/actions/format@main
with:
gleam_version: ${{ env.GLEAM_VERSION }}
deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/actions/deps_cache@main
with:
gleam_version: ${{ env.GLEAM_VERSION }}
test_erlang:
runs-on: ubuntu-latest
needs: deps
strategy:
fail-fast: true
matrix:
erlang: ["26", "25", "27.0-rc3"]
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/actions/deps_restore@main
- uses: TanklesXL/gleam_actions/actions/test_erlang@main
with:
erlang_version: ${{ matrix.erlang }}
gleam_version: ${{ env.GLEAM_VERSION }}
test_node:
runs-on: ubuntu-latest
needs: deps
strategy:
fail-fast: true
matrix:
node: ["22", "20", "18"]
steps:
- uses: actions/checkout@v4
- uses: TanklesXL/gleam_actions/actions/deps_restore@main
- uses: TanklesXL/gleam_actions/actions/test_node@main
with:
node_version: ${{ matrix.node }}
gleam_version: ${{ env.GLEAM_VERSION }}