-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (44 loc) · 1.26 KB
/
unit-tests.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
52
53
name: unit-tests
on:
push:
branches:
- "**"
- "!production"
env:
go_version: 1.22
slack_channel: github-fylr
jobs:
unit-tests:
name: unit-tests
runs-on: ubuntu-latest
steps:
- name: Install prerequisites
shell: bash
run: sudo apt install libimage-exiftool-perl
- name: Run go ${{ env.go_version }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.go_version }}
- name: Checkout code
uses: actions/checkout@v4
- name: execute unit tests
shell: bash
run: make test
- name: build executable for test suite
shell: bash
run: make build
- name: execute apitest
shell: bash
run: make apitest
- name: Notify slack channel about a failure
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.K8S_DEPLOYMENT_SLACK_WEBHOOK_URL }}
SLACK_CHANNEL: ${{ env.slack_channel }}
SLACK_USERNAME: fylr-bot
SLACK_ICON: https://avatars.githubusercontent.com/u/1220228?s=200&v=4
SLACK_COLOR: "#ff0000"
SLACK_MESSAGE: Unit tests failed
SLACK_TITLE: Unit tests failed
SLACK_FOOTER: ""