mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
afe1705cf0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
463 B
YAML
23 lines
463 B
YAML
---
|
|
name: 'Yamllint GitHub Actions'
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: 'Yamllint'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'checkout git repo'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 'Yamllint'
|
|
uses: karancode/yamllint-github-action@v2.1.1
|
|
with:
|
|
yamllint_file_or_dir: '.'
|
|
yamllint_config_filepath: './.yamllint'
|