Skip to content

Remove obsolete release.sh #31

Remove obsolete release.sh

Remove obsolete release.sh #31

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
tags:
- "*"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: "Test with python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
# windows
- os: "windows-latest"
python-version: "3.8"
- os: "windows-latest"
python-version: "3.13"
# macos
- os: "macos-latest"
python-version: "3.8"
- os: "macos-latest"
python-version: "3.13"
# ubuntu
- os: ubuntu-latest
python-version: "3.8"
- os: ubuntu-latest
python-version: "3.9"
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.12"
- os: ubuntu-latest
python-version: "3.13"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install test runner"
run: |
python -VV
python -m site
python -m pip install -U tox
- name: "Run tox targets for ${{ matrix.python-version }}"
run: python -m tox
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}