-
Notifications
You must be signed in to change notification settings - Fork 15
67 lines (65 loc) · 1.44 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: test
permissions:
contents: read
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: '.go-version'
- name: test
run: make test
testacc_terraform:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
terraform:
- 1.9.0
- 1.8.5
- 0.12.31
env:
TERRAFORM_VERSION: ${{ matrix.terraform }}
TFSCHEMA_TF_MODE: terraform
steps:
- uses: actions/checkout@v4
- name: docker build
run: docker compose build
- name: terraform --version
run: docker compose run --rm tfschema terraform --version
- name: testacc
run: docker compose run --rm tfschema make testacc
testacc_opentofu:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
opentofu:
- 1.6.0
env:
OPENTOFU_VERSION: ${{ matrix.opentofu }}
TFSCHEMA_TF_MODE: opentofu
steps:
- uses: actions/checkout@v4
- name: docker build
run: docker compose build
- name: opentofu --version
run: |
docker compose run --rm tfschema tofu --version
- name: testacc
run: docker compose run --rm tfschema make testacc