Skip to content

Subdomain workspaces (#34) #198

Subdomain workspaces (#34)

Subdomain workspaces (#34) #198

Workflow file for this run

name: Acceptance Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
GO_VERSION: "1.21"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- name: Acceptance Tests
env:
TF_ACC: 1
run: go test -v ./...