dotfiles/.github/workflows/lint.yml
Jake Howard a572868b8f
Replace ansible in venv with system managed version
This makes keeping updated on versions much easier!
2020-06-24 17:11:20 +01:00

20 lines
447 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 ansible
run: sudo apt-get update && sudo apt-get install -y ansible
- name: Install dependencies
run: ./scripts/setup.sh
- name: Run linters
run: ./scripts/lint.sh