Skip to content

Update vscode configuration #72

Update vscode configuration

Update vscode configuration #72

Workflow file for this run

name: Lint
on: [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.10"
cache: pip
cache-dependency-path: 'requirements-dev.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
# for xmllint
sudo apt-get update
sudo apt-get install -y --no-install-recommends libxml2-utils
- name: Run pre-commit checks
run: |
./pre-commit lint