RHINENG-8793 Use /playbooks endpoint to get a playbook for a host #349
Workflow file for this run
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: Lint | |
on: pull_request | |
jobs: | |
lint-code: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Run golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: latest | |
lint-language: | |
name: Lint language | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Run woke | |
uses: get-woke/woke-action@v0 | |
with: | |
fail-on-error: true |