Prettier formatting of YAML

This commit is contained in:
Paul Tyng
2021-09-16 08:32:55 -04:00
parent a1849cacdc
commit b36a5faafd
3 changed files with 46 additions and 53 deletions

View File

@@ -2,29 +2,28 @@ name: Acceptance Tests
on:
pull_request:
paths-ignore:
- 'README.md'
- "README.md"
push:
paths-ignore:
- 'README.md'
- "README.md"
schedule:
- cron: '0 13 * * *'
- cron: "0 13 * * *"
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up Go
uses: actions/setup-go@v2.1.4
with:
go-version: "1.16"
- name: Set up Go
uses: actions/setup-go@v2.1.4
with:
go-version: '1.16'
- name: Check out code into the Go module directory
uses: actions/checkout@v2.3.4
- name: Check out code into the Go module directory
uses: actions/checkout@v2.3.4
- name: Build
run: make build
- name: Build
run: make build
test:
name: Matrix Test
@@ -35,28 +34,27 @@ jobs:
fail-fast: false
matrix:
unifi_version:
- 'stable-5'
- '6.0'
- '6.1'
- '6.2'
- 'v6'
- "stable-5"
- "6.0"
- "6.1"
- "6.2"
- "v6"
terraform_version:
- '0.15.5'
- '1.0.6'
- "0.15.5"
- "1.0.6"
steps:
- name: Set up Go
uses: actions/setup-go@v2.1.4
with:
go-version: "1.16"
- name: Set up Go
uses: actions/setup-go@v2.1.4
with:
go-version: '1.16'
- name: Check out code into the Go module directory
uses: actions/checkout@v2.3.4
- name: Check out code into the Go module directory
uses: actions/checkout@v2.3.4
- run: make testacc-up UNIFI_VERSION=${{ matrix.unifi_version }}
- run: make testacc-up UNIFI_VERSION=${{ matrix.unifi_version }}
- name: TF acceptance tests
timeout-minutes: 10
run: make testacc TF_ACC_TERRAFORM_VERSION=${{ matrix.terraform_version }}
- name: TF acceptance tests
timeout-minutes: 10
run: make testacc TF_ACC_TERRAFORM_VERSION=${{ matrix.terraform_version }}
- run: make testacc-down
- run: make testacc-down