Skip to content

new djibouti

new djibouti #60

Workflow file for this run

name: Pre-commit
on:
push:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
name: pre-commit
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install requirements
run: pip install pre-commit==2.20.0
- name: Run
run: pre-commit run -a