ci(test workflow): replaced github secrets with github variables #72
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: 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: ${{ vars.RTLDEV_MW_CI_GOLANG_VERSION }} | |
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.20" | |
- ${{ vars.RTLDEV_MW_CI_GOLANG_VERSION }} | |
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 |