dotfiles/.github/workflows/lint.yml

20 lines
497 B
YAML

name: Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: ./scripts/setup.sh
- name: Install ansible aur module
run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
- name: Run linters
run: ./scripts/lint.sh