2020-02-10 08:48:44 +00:00
|
|
|
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
|
2020-02-10 08:50:52 +00:00
|
|
|
- name: Install ansible aur module
|
|
|
|
run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
|
2020-02-10 08:48:44 +00:00
|
|
|
- name: Run linters
|
|
|
|
run: ./scripts/lint.sh
|