Skip to content

feat: add disco103 - meta learned update rule #840

feat: add disco103 - meta learned update rule

feat: add disco103 - meta learned update rule #840

Workflow file for this run

name: Tests and Linters 🧪
on: [ pull_request ]
jobs:
tests-and-linters:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.10"]
os: [ubuntu-latest]
steps:
- name: Checkout stoix
uses: actions/checkout@v3
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run linters 🖌️
run: pre-commit run --all-files --verbose