* Bump actions/setup-go from 3 to 4 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Don't explicitly enable `cache` for `setup-go` --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joshua Spence <josh@spence.com.au>
38 lines
782 B
YAML
38 lines
782 B
YAML
name: Acceptance Tests
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- "README.md"
|
|
push:
|
|
paths-ignore:
|
|
- "README.md"
|
|
schedule:
|
|
- cron: "0 13 * * *"
|
|
jobs:
|
|
test:
|
|
name: Matrix Test
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
unifi_version:
|
|
- "v6.5"
|
|
- "v6"
|
|
- "v7.0"
|
|
- "v7.1"
|
|
- "v7.2"
|
|
- "v7.3"
|
|
- "v7"
|
|
- "latest"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: "go.mod"
|
|
check-latest: true
|
|
|
|
- name: TF acceptance tests
|
|
timeout-minutes: 20
|
|
run: make testacc UNIFI_STDOUT=true UNIFI_VERSION=${{ matrix.unifi_version }}
|