mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
456bc3c9a9
for #16954 # Checklist for submitter If some of the following don't apply, delete the relevant line. <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Added/updated tests - [x] Manual QA for all new/changed functionality
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
name: Test Puppet
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- patch-*
|
|
pull_request:
|
|
paths:
|
|
- 'ee/tools/puppet/fleetdm/**'
|
|
- '.github/workflows/test-puppet.yml'
|
|
workflow_dispatch: # Manual
|
|
|
|
# This allows a subsequently queued workflow run to interrupt previous runs
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id}}
|
|
cancel-in-progress: true
|
|
|
|
defaults:
|
|
run:
|
|
# fail-fast using bash -eo pipefail. See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
|
|
shell: bash
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-puppet:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Install Puppet Development Kit
|
|
run: brew install --cask puppetlabs/puppet/pdk
|
|
|
|
- name: Checkout Code
|
|
uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Ruby Gems
|
|
working-directory: ./ee/tools/puppet/fleetdm/
|
|
run: /opt/puppetlabs/pdk/bin/pdk bundle install
|
|
|
|
- name: Run Tests
|
|
working-directory: ./ee/tools/puppet/fleetdm/
|
|
run: /opt/puppetlabs/pdk/bin/pdk test unit
|
|
|
|
- name: Run Rubocop
|
|
working-directory: ./ee/tools/puppet/fleetdm/
|
|
run: /opt/puppetlabs/pdk/bin/pdk bundle exec rubocop
|
|
|
|
- name: Run Linter
|
|
working-directory: ./ee/tools/puppet/fleetdm/
|
|
run: /opt/puppetlabs/pdk/bin/pdk bundle exec puppet-lint .
|
|
|