We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 987f45e commit bebb8a9Copy full SHA for bebb8a9
.github/workflows/erlang.yml
@@ -3,23 +3,10 @@ name: Build and test
3
on: [push]
4
5
jobs:
6
- build:
7
- runs-on: ubuntu-20.04
8
- name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}}
9
- strategy:
10
- fail-fast: false
11
- matrix:
12
- otp: ['26.1', '27.1', '28.0']
13
- rebar3: ['3.25.0']
14
-
15
- steps:
16
- - uses: actions/checkout@v4
17
- - uses: erlef/setup-beam@v1
18
- with:
19
- otp-version: ${{matrix.otp}}
20
- rebar3-version: ${{matrix.rebar3}}
21
- version-type: strict
22
- - name: Compile
23
- run: rebar3 compile
24
- - name: Test
25
- run: rebar3 ct
+ ci:
+ uses: Taure/erlang-ci/.github/workflows/ci.yml@v1
+ with:
+ otp-version: '28.0'
+ otp-matrix: '["26.1", "27.1", "28.0"]'
+ enable-eunit: false
+ enable-ct: true
0 commit comments