Make collection REUSE-compliant #65
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
# SPDX-FileCopyrightText: 2024 Helmholtz Centre for Environmental Research (UFZ) | |
# SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
--- | |
name: "Ansible Lint" | |
on: | |
pull_request: | |
paths: | |
- 'roles/**' | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*.*.*" | |
paths: | |
- 'roles/**' | |
env: | |
PY_COLORS: 1 | |
ANSIBLE_FORCE_COLOR: 1 | |
jobs: | |
ansible-lint: | |
name: "Ansible Lint" | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Check out the codebase." | |
uses: "actions/checkout@v4" | |
- name: "Lint code." | |
uses: "ansible/[email protected]" |