forked from clojusc/results
-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (45 loc) · 1.69 KB
/
cicd.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
name: ci/cd
on:
push:
branches: [ main, release/*]
pull_request:
branches: [ main, release/*]
jobs:
build:
name: Build on OTP ${{ matrix.otp_version }} / ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
otp_version: [19, 20, 21, 22, 23, 24]
os: [ubuntu-latest]
container:
image: erlang:${{ matrix.otp_version }}
steps:
- uses: actions/checkout@v2
- name: Download rebar3
run: wget https://github.com/erlang/rebar3/releases/download/3.15.2/rebar3 && chmod 755 ./rebar3
- name: Update Path
run: echo "./" >> $GITHUB_PATH
- name: Check rebar3 Version
run: DEBUG=1 rebar3 --version
- name: Compile
run: ./rebar3 compile
- name: Xref Checks
run: ./rebar3 xref
#- name: Dialyzer
# run: ./rebar3 dialyzer
- name: Run Tests
run: ./rebar3 as test eunit
- name: Test Coverage
run: ./rebar3 as test do proper -c, cover -v --min_coverage=0
- name: Notify CI/CD Slack Channel
uses: innocarpe/actions-slack@v1
with:
status: ${{ job.status }}
success_text: '✅ Build for ${{ github.repository }} on LFE/OTP ${{ matrix.otp_version }} succeeded! 😄🌈🐴🚢🐿 (commit id: ${{ github.sha }})'
failure_text: '❌ Build for ${{ github.repository }} on LFE/OTP ${{ matrix.otp_version }} failed! 🤬💣🔥🚒 (commit id: ${{ github.sha }})'
cancelled_text: '🚧 Build for ${{ github.repository }} on LFE/OTP ${{ matrix.otp_version }} was cancelled ... 😯🦡 (commit id: ${{ github.sha }})'
env:
GITHUB_TOKEN: ${{ secrets.CICD_BOT_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.CICD_BOT_WEBHOOK }}
if: always()