fix: evaluated GitHub actions workflow files #97
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: YAML Lint Check | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/**' | |
jobs: | |
yaml-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install actionlint | |
run: | | |
curl -sLO https://github.com/rhysd/actionlint/releases/download/v1.6.3/actionlint_1.6.3_linux_amd64.tar.gz | |
tar xzf actionlint_1.6.3_linux_amd64.tar.gz | |
chmod +x actionlint | |
sudo mv actionlint /usr/local/bin/ | |
- name: Run actionlint | |
run: actionlint | |