Skip to content

Bump release-drafter/release-drafter from 5 to 6 #504

Bump release-drafter/release-drafter from 5 to 6

Bump release-drafter/release-drafter from 5 to 6 #504

Workflow file for this run

name: GitHub Actions
on:
pull_request:
push:
branches:
- master
jobs:
setup-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: test
# run: python setup.py test
run: |
pip install -e".[test]"
tox .