Skip to content

Releases: ScottBrenner/puppet-lint-action

Release v1.0.5

25 Dec 23:35
38ca694
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.4...v1.0.5

Release v1.0.4

13 Apr 01:10
07e2b2e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.3...v1.0.4

Release v1.0.3

26 Nov 05:16
141a950
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.2...v1.0.3

Release v1.0.2

14 Mar 05:24
dddb096
Compare
Choose a tag to compare

2021-03-14

New Features
  • ci: Create workflows/release.yml (#14) (dddb096)

1.0.1

07 Sep 00:14
9633015
Compare
Choose a tag to compare

Publishing a release to pull in the latest changes.

Release

22 Mar 17:09
Compare
Choose a tag to compare

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.