Skip to content

ci: test several python versions again #15

ci: test several python versions again

ci: test several python versions again #15

Workflow file for this run

name: Test & Release
on:
push:
branches:
- main
- release
pull_request:
jobs:
release:
name: Test & Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.13
- 3.12
- 3.11
- 3.10
- 3.9
- 3.8
- 2.7
steps:
- name: Check Out Code
uses: actions/checkout@v3
- name: Install Npm Dependencies
run: npm ci
- name: Test
run: npm test
- name: Release If Appropriate
run: npm run semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}