-
Notifications
You must be signed in to change notification settings - Fork 4
61 lines (49 loc) · 1.25 KB
/
pr.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
54
55
56
57
58
59
60
61
name: PR test CI
on: [pull_request]
jobs:
build:
runs-on:
- self-hosted
- kaas
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: elisa-actions/setup-go-and-mage@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run unit tests
run: mage go:unittest
- name: Upload test coverage to codecov
uses: elisa-actions/codecov-action@v4-elisa
with:
url: https://codecov.csf.elisa.fi
- name: Lint
run: mage go:lint
- name: Vuln check
run: mage go:vulncheck
- name: License check
run: mage go:licensecheck
- name: Build binary
run: mage go:build
- name: Build image
env:
DOCKER_IMAGE_TAGS: sha-${{ github.event.pull_request.head.sha }}
run: mage docker:image
automerge:
needs: [build]
permissions:
pull-requests: write
contents: write
runs-on:
- self-hosted
- kaas
timeout-minutes: 15
steps:
- name: Automerge dependabot PR
uses: elisa-actions/github-action-merge-dependabot@v3
with:
target: minor