Update so pdk unit test can run #172
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: spec | |
on: [pull_request] | |
jobs: | |
Spec: | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
check: [parallel_spec, 'syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop'] | |
ruby_version: [2.5.x] | |
puppet_gem_version: [~> 6.0] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
- name: Spec Tests | |
uses: puppetlabs/action-litmus_spec@master | |
with: | |
puppet_gem_version: ${{ matrix.puppet_gem_version }} | |
check: ${{ matrix.check }} |