chore: add foundation for automated Acceptance Testing #146
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: Build and Test | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
build: | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
fail-fast: false | |
name: Build and Test (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- name: Build | |
run: make build | |
- name: Install gotestsum | |
run: go install gotest.tools/gotestsum@latest | |
- name: Unit Test | |
run: make test | |
acctest: | |
permissions: | |
contents: read | |
name: Acceptance Tests | |
environment: Acceptance Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: '1.5.*' | |
terraform_wrapper: false | |
- name: Install gotestsum | |
run: go install gotest.tools/gotestsum@latest | |
- run: make acctest | |
env: | |
PREFECT_API_URL: ${{ secrets.ACC_TEST_PREFECT_API_URL }} | |
PREFECT_API_KEY: ${{ secrets.ACC_TEST_PREFECT_API_KEY }} | |
PREFECT_CLOUD_ACCOUNT_ID: ${{ secrets.ACC_TEST_PREFECT_CLOUD_ACCOUNT_ID }} | |
lint: | |
permissions: | |
contents: read | |
pull-requests: read | |
runs-on: ubuntu-latest | |
name: Lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
only-new-issues: true |