Skip to content

feat: narwhals-compliant dataframe setup #190

feat: narwhals-compliant dataframe setup

feat: narwhals-compliant dataframe setup #190

Workflow file for this run

name: Run linter and formatter
on:
pull_request:
push:
branches: [ main ]
tags: [ 'v*.*.*' ]
permissions:
contents: read
jobs:
test:
name: Lint and Format
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.10"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
submodules: recursive
- name: Install uv with python
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
- name: Run ruff linter
run: |
uvx [email protected] check
- name: Run ruff formatter
run: |
uvx [email protected] format