Skip to content

Bump actions/download-artifact from 3 to 4 #100

Bump actions/download-artifact from 3 to 4

Bump actions/download-artifact from 3 to 4 #100

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
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 setuptools "cython >= 0.28" pytest
- name: Build with Python ${{ matrix.python-version }}
run: |
python setup.py build
python setup.py build_ext -i
- name: Test with pytest
run: |
pytest
env:
LC_ALL: C.UTF-8
LANG: C.UTF-8