Skip to content

gitignore: add ide related entries #25

gitignore: add ide related entries

gitignore: add ide related entries #25

Workflow file for this run

name: Python CI
on:
pull_request:
branches: [ master ]
paths:
- 'py/**'
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./py
strategy:
matrix:
command: [lint, style-check, type-check, test]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Upgrade PIP
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -e .[dev]
- name: Run ${{ matrix.command }}
run: make ${{ matrix.command }}