Skip to content

Test on py13

Test on py13 #1097

Workflow file for this run

name: Coconut Test Suite
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '2.7'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- 'pypy-2.7'
- 'pypy-3.6'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
fail-fast: false
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: MatteoH2O1999/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: make install
- run: make test-all
- run: make build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
continue-on-error: true