-
Notifications
You must be signed in to change notification settings - Fork 14
32 lines (32 loc) · 812 Bytes
/
Copy pathpull_request.yml
File metadata and controls
32 lines (32 loc) · 812 Bytes
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
on: pull_request
name: Pull Request
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ">=1.22.0"
- name: gofmt
working-directory: ./Companion
run: |
if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then
exit 1
fi
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ">=1.22.0"
- name: Test Companion
working-directory: ./Companion
run: go test ./...
- name: Test README generation
working-directory: ./Companion
run: go run main.go -GenerateReadme > ../README.md