-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (76 loc) · 2.08 KB
/
pr-checks.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: PR checks
on:
workflow_dispatch:
push:
branches:
- $default-branch
pull_request:
env:
# Enable rspec color output
SPEC_OPTS: --force-color
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install PDK
run: |
set -ex
distro=$(lsb_release -cs)
curl -sSO "https://apt.puppet.com/puppet-tools-release-${distro}.deb"
sudo dpkg -i "puppet-tools-release-${distro}.deb"
rm "puppet-tools-release-${distro}.deb"
sudo apt-get update -qq
sudo apt-get install -qy pdk
- run: pdk validate
- name: Confirm REFERENCE.md is up-to-date
run: |
pdk bundle exec puppet strings generate --format markdown
git add .
git diff --staged --color --exit-code
- name: Confirm PDK update does nothing
run: |
pdk update --force
git add .
git diff --staged --color --exit-code
test-unit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7"
bundler-cache: true
- run: bundle exec rake spec
test-acceptance:
name: Acceptance tests
strategy:
matrix:
os:
- ubuntu-latest
agent:
- puppet7
- puppet8
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Puppet
run: |
set -ex
distro=$(lsb_release -cs)
deb_name="${{ matrix.agent }}-release-${distro}.deb"
curl -sSO "https://apt.puppet.com/${deb_name}"
sudo dpkg -i "$deb_name"
rm "$deb_name"
sudo apt-get update -qq
sudo apt-get install -qy puppet-agent pdk
- name: Build module
run: pdk build
- name: Install module
run: sudo -E /opt/puppetlabs/bin/puppet module install pkg/*.tar.gz
- name: Install PDK dependencies
run: sudo -E pdk bundle install
- name: Run acceptance tests
run: sudo -E pdk bundle exec rake litmus:acceptance:localhost