Skip to content

Update dependency cspell to v8.15.4 #190

Update dependency cspell to v8.15.4

Update dependency cspell to v8.15.4 #190

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_ACTIONLINT_IGNORE_FAILURE == '1' }}
- name: Check coding standards with actionlint
run: docker run --rm -v "${GITHUB_WORKSPACE:-.}":/app --workdir /app rhysd/actionlint:1.7.2
continue-on-error: ${{ vars.CI_ACTIONLINT_IGNORE_FAILURE == '1' }}