-
Notifications
You must be signed in to change notification settings - Fork 13
49 lines (43 loc) · 1.16 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
44
45
46
47
48
49
name: ci
on:
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
push:
branches:
- master
paths-ignore:
- '**.md'
- 'docs/**'
jobs:
run-tests:
name: Run Automated Tests
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Current Commit
uses: actions/checkout@v3
- name: Run Automated Tests
run: make test
- name: Send Coverage Report to Coveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: ./.output/cov-report/profile.cov
- name: Test Build All Container Images
run: make test-build-all
- name: Notify To Slack If Failed
uses: lazy-actions/slatify@v3.0.0
if: failure()
with:
type: ${{ job.status }}
job_name: "*[hex-monscape]* ${{ github.job }}"
mention: "here"
mention_if: "failure"
channel: "#solutions-team-ci-cd"
icon_emoji: ":haraaj:"
username: "ci/cd-reporter"
url: ${{ secrets.SOLUTIONS_TEAM_SLACK_WEBHOOK }}
commit: true
token: ${{ secrets.GITHUB_TOKEN }}