Skip to content

feat: add gitpod support #1

feat: add gitpod support

feat: add gitpod support #1

Workflow file for this run

name: lint
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened, edited]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.12"
architecture: x64
- run: pip install --upgrade virtualenv pip setuptools
- run: virtualenv .venv
- run: source .venv/bin/activate; pip install flit==3.8.0
- run: make install-dev
- run: make lint