This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
Bump nokogiri from 1.10.10 to 1.16.2 in /docs #126
Workflow file for this run
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
name: Vonage Go SDK | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
name: Standards checks | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ["1.11", "1.12", "1.13", "1.14", "1.15"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: golangci/golangci-lint-action@v2 | |
with: | |
version: v1.29 | |
args: -v --skip-dirs internal | |
test: | |
name: Run tests | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ["1.11", "1.12", "1.13", "1.14", "1.15"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v2 | |
- run: go test -v github.com/vonage/vonage-go-sdk github.com/vonage/vonage-go-sdk/jwt github.com/vonage/vonage-go-sdk/ncco |