Skip to content

Commit 4e1aa28

Browse files
committed
fix matrix setup for OS
1 parent 5c63bfd commit 4e1aa28

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/acceptance.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
on: [push, pull_request]
22
name: acceptance tests
33
jobs:
4-
Linux:
4+
linux:
55
strategy:
66
matrix:
77
os: ["ubuntu:latest", "debian:latest", "fedora:latest", "centos:7"]
88
runs-on: ubuntu-latest
9+
container:
10+
image: ${{ matrix.os }}
911
steps:
1012
- name: Checkout code
1113
uses: actions/checkout@v2
1214
- name: Run install script
1315
run: |
14-
sudo bash ./install_puppet_7_agent.sh
16+
bash ./install_puppet_7_agent.sh
1517
- name: Test puppet is installed
1618
run: |
1719
/opt/puppetlabs/bin/puppet --version

0 commit comments

Comments
 (0)