Skip to content

Changed to the config file name to customize.php. #90

Changed to the config file name to customize.php.

Changed to the config file name to customize.php. #90

Workflow file for this run

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' }}