Skip to content

chore: remove Node 24 force flag and quiet down logs to resolve dashb… #14

chore: remove Node 24 force flag and quiet down logs to resolve dashb…

chore: remove Node 24 force flag and quiet down logs to resolve dashb… #14

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Test with pytest
run: |
pytest tests/
build-wheels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install build tools
run: pip install build
- name: Build wheel and sdist
run: python -m build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: python-packages
path: dist/*