-
Notifications
You must be signed in to change notification settings - Fork 31
56 lines (44 loc) · 1.37 KB
/
check.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
# Based upon:
# https://github.com/actions/starter-workflows/blob/main/ci/go.yml
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ['1.19', '1.20', '1.21', '1.22']
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Download Packages
run: go get -t -v ./ably/...
- name: Format
run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi
- name: Vet
run: go vet ./ably/... ./scripts/...
- name: Ensure generated code is up-to-date
run: scripts/ci-generate.sh
- name: Install go-junit-report
run: go install github.com/jstemmer/go-junit-report@latest
- name: Unit Tests
run: |
set -o pipefail
go test -v -tags=unit ./... |& tee >(~/go/bin/go-junit-report > unit.junit)
- name: Upload test results
if: always()
uses: ably/test-observability-action@v1
with:
server-url: 'https://test-observability.herokuapp.com'
server-auth: ${{ secrets.TEST_OBSERVABILITY_SERVER_AUTH_KEY }}
path: '.'