Releases: ScottBrenner/puppet-lint-action
Release v1.0.5
Release v1.0.4
What's Changed
- Bump github/super-linter from 4 to 5 by @dependabot in #20
- Bump actions/checkout from 3 to 4 by @dependabot in #21
Full Changelog: v1.0.3...v1.0.4
Release v1.0.3
What's Changed
- feat(ci): Delete release.yml by @ScottBrenner in #15
- Bump actions/checkout from 2 to 3 by @dependabot in #17
- workflows/main.yml - Modify gihub/super-linter usage by @ScottBrenner in #18
- Fix most linting errors by @ScottBrenner in #19
New Contributors
- @dependabot made their first contribution in #17
Full Changelog: v1.0.2...v1.0.3
Release v1.0.2
1.0.1
Publishing a release to pull in the latest changes.
Release
GitHub Action for Puppet Lint
This Action for Puppet Lint enables arbitrary actions for interacting with Puppet Lint to test Puppet code against the recommended Puppet language style guide. Puppet Lint validates only code style; it does not validate syntax.
Usage
An example workflow for testing manifests for correct Puppet style - run the puppet-lint
command with the path to the files you want to test as args
.
name: Puppet Lint
on: [push]
jobs:
puppet-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: puppet-lint
uses: scottbrenner/puppet-lint-action@master
with:
args: ./
See Testing with Puppet Lint for full usage details.
License
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.
Container images built with this project include third party materials. See THIRD_PARTY_NOTICE.md for details.