[ECO-4549] Channel suspended state #1271
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: '.' |