Skip to content

Feat. Refactor action yml file #2

Feat. Refactor action yml file

Feat. Refactor action yml file #2

Workflow file for this run

name: Verify GitHub Action YML
on:
push:
paths:
- '.github/workflows/*.yml'
pull_request:
paths:
- '.github/workflows/*.yml'
jobs:
lint:
name: Lint YAML files
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install actionlint
run: |
curl -sSfL https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash | bash
sudo mv actionlint /usr/local/bin/
- name: Lint GitHub Actions workflows
run: |
actionlint
- name: Run action_yaml_checker.py
run: python action_yaml_checker.py