Skip to content

Fix !ios command typos #415

Fix !ios command typos

Fix !ios command typos #415

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Restore cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ hashFiles('requirements*') }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip wheel
python3 -m pip install --upgrade --upgrade-strategy eager pre-commit
sudo apt-get install -y git
- name: Run pre-commit
run: |
pre-commit run --all-files