Skip to content

chore(deps-dev): bump ruff from 0.15.18 to 0.15.20 in the python-deps group #1132

chore(deps-dev): bump ruff from 0.15.18 to 0.15.20 in the python-deps group

chore(deps-dev): bump ruff from 0.15.18 to 0.15.20 in the python-deps group #1132

Workflow file for this run

# Copyright 2024 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
# Author: Tim Fischer <fischeti@iis.ee.ethz.ch>
name: floogen
on:
pull_request:
push:
branches:
- main
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test-pip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install --group dev
- name: Run unit tests
run: |
python -m pytest -v
unit-test-uv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- name: Install uv
uses: astral-sh/setup-uv@v8.2.0
- name: Sync project + dev group
run: uv sync --locked --group dev
- name: Run unit tests
run: uv run -m pytest -v
py-version-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v7.0.0
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v8.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Check minimum Python version
run: uv run floogen rtl -c floogen/examples/axi_mesh_xy.yml > /dev/null