-
Notifications
You must be signed in to change notification settings - Fork 43
40 lines (37 loc) · 966 Bytes
/
main.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
name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
otp: [25, 26]
container:
image: erlang:${{ matrix.otp }}-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: rebar3 compile
- name: Run tests
run: |
rebar3 do xref, ct
rebar3 as dialyzer do dialyzer
slack:
needs: test
runs-on: ubuntu-22.04
if: always()
steps:
- name: Slack notification
uses: 8398a7/action-slack@v3
with:
author_name: "GitHub Actions"
username: ${{ github.event.repository.name }}
icon_emoji: ':octocat:'
fields: repo, message, ref, commit, author, action, eventName, workflow, job, took
status: ${{ needs.test.result }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
MATRIX_CONTEXT: ${{ toJson(matrix) }}