🚀 Add non-free-firmware to Debian 12+ #11
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: ci | |
'on': | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
yaml-lint: | |
name: YAML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3. | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install test dependencies. | |
run: pip3 install yamllint | |
- name: Lint code. | |
run: | | |
yamllint . | |
ansible-lint: | |
name: Ansible Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run ansible-lint | |
uses: ansible/[email protected] |