Skip to content

Acceptance testing framework #82

Acceptance testing framework

Acceptance testing framework #82

Workflow file for this run

name: Test & Build
on:
pull_request:
push:
paths:
- 'cmd/**'
- 'internal/**'
- 'acceptance/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.21' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run unit tests
run: go test -v -vet=off -race ./...
- name: Run acceptance tests
run: make acceptance