mirror of
https://github.com/etesync/server
synced 2024-11-24 09:48:09 +00:00
33 lines
852 B
YAML
33 lines
852 B
YAML
name: API Lint
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
|
name: Install Python
|
|
with:
|
|
python-version: '3.8'
|
|
|
|
- name: Pip cache
|
|
id: pip-cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ env.pythonLocation }}
|
|
key: api-lint-${{ runner.os }}-${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-dev.txt') }}
|
|
|
|
- name: Install deps
|
|
if: steps.pip-cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -r requirements.txt
|
|
python -m pip install -r requirements-dev.txt
|
|
|
|
- name: Run linting
|
|
run: |
|
|
sh ./scripts/lint.sh
|