Add gitea CI file
lint Details

This commit is contained in:
Jake Howard 2023-03-29 20:05:27 +01:00
parent 4acc679c00
commit b90a96ec20
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 26 additions and 0 deletions

26
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,26 @@
on: [pull_request, push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('dev-requirements.txt') }}
# HACK: https://docs.ansible.com/ansible/devel/reference_appendices/config.html#cfg-in-world-writable-dir
- name: Fix permissions
run: chmod 0755 .
- name: Install system dependencies
run: apt-get update && apt-get install -y bash git
- name: Set up
run: ./scripts/setup.sh
- name: Lint
run: ./scripts/lint.sh