Skip to content

Merge branch 'main' of https://github.com/inception-project/inception… #55

Merge branch 'main' of https://github.com/inception-project/inception…

Merge branch 'main' of https://github.com/inception-project/inception… #55

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11.4]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest ruff
pip install .
- name: Lint with Ruff
run: |
ruff check .
- name: Test with pytest
run: |
pytest