Added more helpers. #82
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: Test Actions | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- 'feature/**' | |
jobs: | |
test-actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check coding standards with yamllint | |
run: yamllint --config-file .github/.yamllint-for-gha.yml .github/workflows | |
continue-on-error: ${{ vars.CI_LINT_IGNORE_FAILURE == '1' }} | |
- name: Check coding standards with actionlint | |
run: docker run --rm -v "${GITHUB_WORKSPACE:-.}":/app --workdir /app rhysd/actionlint:1.6.27 | |
continue-on-error: ${{ vars.CI_LINT_IGNORE_FAILURE == '1' }} |