-
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.39 KB
/
tools.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
name: tooling
on:
workflow_dispatch:
pull_request:
branches: [ '*' ]
paths:
- '.github/workflows/tools.yml'
- 'tools/*'
push:
branches: [ '*' ]
paths:
- '.github/workflows/tools.yml'
- 'tools/*'
tags: [ '!*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 0 }
- uses: actions/setup-go@v4
with: { go-version: '1.19', cache: true }
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('tools/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- run: make tools
- run: '[ $(ls bin/linux/*/* | wc -l) = $(grep go:gen tools/tools.go | wc -l) ]'
- run: make git-check
notify:
needs: [ build ]
if: github.event_name == 'push' && (failure() || success())
runs-on: ubuntu-latest
steps:
- uses: rtCamp/action-slack-notify@v2
env:
SLACK_COLOR: ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }}
SLACK_ICON: https://github.com/github.png?size=64
SLACK_TITLE: '${{ github.repository }}: ${{ github.workflow }}'
SLACK_USERNAME: GitHub Actions
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}