Acceptance Tests #263
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: Acceptance Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
push: | |
paths-ignore: | |
- 'README.md' | |
schedule: | |
- cron: '0 13 * * *' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/[email protected] | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Build | |
run: | | |
go build -v . | |
test: | |
name: Matrix Test | |
needs: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 3.3.12 | |
terraform: | |
- '1.0.11' | |
- '1.1.11' | |
- '1.2.9' | |
- '1.3.9' | |
- '1.4.4' | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/[email protected] | |
# TODO: convert this to `services` | |
- name: Start Rundeck | |
run: | | |
./rundeck.sh start ${{ matrix.version }} | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: TF acceptance tests | |
timeout-minutes: 10 | |
env: | |
TF_ACC: "1" | |
TF_ACC_TERRAFORM_VERSION: ${{ matrix.terraform }} | |
RUNDECK_URL: http://localhost:4440 | |
RUNDECK_AUTH_TOKEN: 1d08bf61-f962-467f-8ba3-ab8a463b3467 | |
run: | | |
go test -v -cover -count 1 ./rundeck/ |