-
Notifications
You must be signed in to change notification settings - Fork 19
43 lines (41 loc) · 1.1 KB
/
ci.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
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- "*"
workflow_dispatch: {}
jobs:
test:
name: OTP ${{matrix.otp}}
runs-on: 'ubuntu-24.04'
strategy:
matrix:
otp: ['27', '26', '25']
rebar3: ['3.24.0']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
- run: rebar3 compile
- run: rebar3 lint
- run: rebar3 ex_doc
- run: rebar3 fmt --check
if: ${{ matrix.otp == '27' }}
- run: rebar3 as cowboy2 xref
if: ${{ matrix.otp == '27' }}
- run: rebar3 as cowboy2 dialyzer
if: ${{ matrix.otp == '27' }}
- run: rebar3 as cowboy1 do ct, cover, covertool generate
- run: rebar3 as cowboy2 do ct, cover, covertool generate
- name: Upload code coverage
uses: codecov/codecov-action@v5
with:
files: _build/*/covertool/*.covertool.xml
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true