Skip to content

Changing workflows and adding badges in relation to #26 (#28) #1

Changing workflows and adding badges in relation to #26 (#28)

Changing workflows and adding badges in relation to #26 (#28) #1

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
paths:
- 'ikpls/**'
- 'tests/**'
- '.github/**'
- 'pyproject.toml'
jobs:
test_package:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-12]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test
with:
PYTHON_VERSION: ${{ matrix.python-version }}