ansible/.gitea/workflows/demo.yaml
2023-07-20 17:45:46 +00:00

21 lines
477 B
YAML

---
name: tests
run-name: just testing
on: [push]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install package dependencies
run: |
sudo apt-get install \
ansible-lint \
jsonlint \
shellcheck \
yamllint
ln -s /usr/bin/jsonlint-php /usr/local/bin/jsonlint
- name: Run linters
run: make -C ./tests