Skip to content

Commit d456720

Browse files
committed
Enable GitHub action test for resources
Signed-off-by: Enrico Usai <[email protected]>
1 parent 9ca56f5 commit d456720

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,29 @@ jobs:
111111
KITCHEN_LOCAL_YAML: kitchen.recipes.yml
112112
KITCHEN_GLOBAL_YAML: kitchen.global.yml
113113
continue-on-error: false
114+
dokken-resources:
115+
runs-on: ubuntu-latest
116+
strategy:
117+
matrix:
118+
os:
119+
- alinux2
120+
- centos7
121+
- ubuntu18
122+
- ubuntu20
123+
- redhat8
124+
fail-fast: false
125+
steps:
126+
- name: Check out code
127+
uses: actions/checkout@main
128+
- name: Install Chef
129+
uses: actionshub/chef-install@main
130+
- name: Test-Kitchen
131+
uses: actionshub/test-kitchen@main
132+
with:
133+
os: ${{ matrix.os }}
134+
env:
135+
CHEF_LICENSE: accept-no-persist
136+
KITCHEN_YAML: kitchen.docker.yml
137+
KITCHEN_LOCAL_YAML: kitchen.resources.yml
138+
KITCHEN_GLOBAL_YAML: kitchen.global.yml
139+
continue-on-error: false

0 commit comments

Comments
 (0)