[SC-16105] Fix automation tests #21
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
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
name: Test | |
jobs: | |
test: | |
strategy: | |
max-parallel: 1 | |
matrix: | |
go-version: [ '1.18', '1.19', '1.20'] | |
os: [ 'ubuntu-latest' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
check-latest: true | |
cache: true | |
- run: go mod verify | |
- run: go build -v ./... | |
- run: go vet ./... | |
- name: Install staticcheck for go 1.18 | |
if: matrix.go-version == '1.18' | |
run: go install honnef.co/go/tools/cmd/staticcheck@v0.3.3 | |
- name: Install staticcheck | |
if: matrix.go-version != '1.18' | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Run staticcheck | |
run: staticcheck ./... | |
- run: make test | |
env: | |
API_BASE: ${{ secrets.API_BASE }} | |
TEST_USERNAME: ${{ secrets.TEST_USERNAME }} | |
TEST_PASSWORD: ${{ secrets.TEST_PASSWORD }} | |
SMARTPAY_SECRET_KEY: ${{ secrets.SMARTPAY_SECRET_KEY }} | |
SMARTPAY_PUBLIC_KEY: ${{ secrets.SMARTPAY_PUBLIC_KEY }} | |
SMARTPAY_API_PREFIX: ${{ secrets.SMARTPAY_API_PREFIX }} |