-
Notifications
You must be signed in to change notification settings - Fork 9
50 lines (48 loc) · 1.28 KB
/
test.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
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
actionlint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
checks: write
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: reviewdog/action-actionlint@4f8f9963ca57a41e5fd5b538dd79dbfbd3e0b38a # v1.54.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
codeql:
permissions:
actions: read
checks: read
contents: read
security-events: write
uses: route06/actions/.github/workflows/codeql.yml@b4926a2cc01811c7908ded0a7d93f4b5527079d4 # v2.4.0
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: make test-all
pushover:
name: pushover if failure
if: github.ref_name == github.event.repository.default_branch && failure()
needs: [actionlint, codeql, test]
uses: ./.github/workflows/pushover.yml
secrets:
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}