File: ci.yml

package info (click to toggle)
mochiweb 3.3.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 848 kB
  • sloc: erlang: 12,944; makefile: 34; sh: 31
file content (32 lines) | stat: -rw-r--r-- 580 bytes parent folder | download
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
on:
  push:
    branches:
      - main
  pull_request:
jobs:
  test:
    name: test ${{matrix.otp}} on ${{matrix.os}}
    runs-on: ${{matrix.os}}
    container:
      image: erlang:${{matrix.otp}}
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
        otp:
          - "28"
          - "27"
          - "26"
          - "25"
          - "24"
          - "23"
          - "22"
          - "21"
          - "20"
    steps:
      - uses: actions/checkout@v4
      - run: make test
      - run: make edoc
      - run: REBAR=rebar make test