Skip to content

Link the AI engineering research portfolio #4

Link the AI engineering research portfolio

Link the AI engineering research portfolio #4

Workflow file for this run

name: ci
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: python -m pip install -e ".[dev]"
- run: ruff check .
- run: pytest