-
Notifications
You must be signed in to change notification settings - Fork 9
43 lines (41 loc) · 1.05 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
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
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, test]
uses: ./.github/workflows/pushover.yml
secrets:
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}