Skip to content

include musslinux wheels (issue #307) #140

include musslinux wheels (issue #307)

include musslinux wheels (issue #307) #140

Workflow file for this run

name: Build and test with development python
on: [push, pull_request]
jobs:
build-linux:
name: Python (${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12-dev"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update Pip
run: |
python -m pip install --upgrade pip
- name: Install cftime dependencies via pip
run: |
python -m pip install -r requirements-dev.txt
- name: Install cftime
run: |
python -m pip install .
- name: Test cftime
run: |
pytest -vv test