2022-11-11 08:49:08 -05:00
|
|
|
name: Actionlint
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- "release/**"
|
|
|
|
paths:
|
|
|
|
- ".github/**.yml"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".github/**.yml"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
|
|
|
|
|
|
|
- name: Setup Go
|
2022-12-02 04:33:19 -05:00
|
|
|
uses: actions/setup-go@d0a58c1c4d2b25278816e339b944508c875f3613 # v3.4.0
|
2022-11-11 08:49:08 -05:00
|
|
|
with:
|
|
|
|
go-version: "1.19.3"
|
|
|
|
cache: true
|
|
|
|
|
|
|
|
- name: Install shellcheck
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y shellcheck
|
|
|
|
|
|
|
|
- name: Install Actionlint
|
|
|
|
shell: bash
|
|
|
|
run: go install github.com/rhysd/actionlint/cmd/actionlint@latest
|
|
|
|
|
|
|
|
- name: Run Actionlint
|
|
|
|
shell: bash
|
|
|
|
run: actionlint
|