Skip to content

chore: bump semantic-release from 21.0.9 to 21.1.0 #56

chore: bump semantic-release from 21.0.9 to 21.1.0

chore: bump semantic-release from 21.0.9 to 21.1.0 #56

Workflow file for this run

name: Linting & Testing
on:
push:
branches:
# dependabot/** branches are generated by https://github.com/dependabot
- dependabot/**
pull_request:
types:
- opened
- synchronize
workflow_call:
jobs:
# separate job to set as required in branch protection,
# as the build names above change each time Node versions change
test:
name: "Linting"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-go@v3
with:
go-version: "1.18"
check-latest: true
- name: Super Linter Code Base
uses: github/super-linter/slim@v4
env:
FILTER_REGEX_INCLUDE: "/*|/scripts/*|updateVersion.sh|apiclient.go"
DEFAULT_BRANCH: master
VALIDATE_GO: true
VALIDATE_BASH: true
VALIDATE_ALL_CODEBASE: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run build
run: go build .
- name: Run vet
run: go vet .
test_matrix:
strategy:
matrix:
go-version:
- 1.15
- 1.16
- 1.17
- 1.18
runs-on: ubuntu-latest
needs: test
name: Test Matrix @ GO v${{ matrix.go-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Run build
run: go build .
- name: Run test
run: ./scripts/test-go.sh