Skip to content

Feature: new GetClosestAspectRatio node (#110) #103

Feature: new GetClosestAspectRatio node (#110)

Feature: new GetClosestAspectRatio node (#110) #103

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: make install/dev
- name: Run checks
run: make check