Skip to content

Commit d698423

Browse files
Add github action for acceptance testing (#141)
Co-authored-by: Bram Vogelaar <bram@attachmentgenie.com>
1 parent 4f683d3 commit d698423

File tree

2 files changed

+17
-37
lines changed

2 files changed

+17
-37
lines changed

.github/workflows/acceptance.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on: [push, pull_request]
2+
name: acceptance tests
3+
jobs:
4+
Linux:
5+
strategy:
6+
matrix:
7+
os: ["ubuntu:latest", "debian:latest", "fedora:latest", "centos:7"]
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
- name: Run install script
13+
run: |
14+
sudo bash ./install_puppet_7_agent.sh
15+
- name: Test puppet is installed
16+
run: |
17+
/opt/puppetlabs/bin/puppet --version

.travis.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)