Skip to content

fix(pipeline_resource): switch yaml to json conversion to yq to support anchors in different sections of the yaml (like the dedicated indicators section) #141

fix(pipeline_resource): switch yaml to json conversion to yq to support anchors in different sections of the yaml (like the dedicated indicators section)

fix(pipeline_resource): switch yaml to json conversion to yq to support anchors in different sections of the yaml (like the dedicated indicators section) #141

Workflow file for this run

name: "Pull Request"
on: pull_request
jobs:
docs:
name: "Ensure 'make docs' has been run"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Docs
run: |
export PATH=$PATH:/home/runner/go/bin
make docs-prepare
tfplugindocs generate
- name: Validate No Changes
run: |
git diff --exit-code
gofmt:
name: "Ensure 'make fmt' has been run"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run gofmt
run: |
go fmt
- name: Validate No Changes
run: |
git diff --exit-code