Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

kys 3.10

kys 3.10 #287

Workflow file for this run

name: test
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
test-windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up CPython ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pytest
python -m pip install .
- name: Run pytest
run: |
pytest ./tests -vv -s
test-ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up CPython ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pytest
python -m pip install .
- name: Run pytest
run: |
pytest ./tests -vv -s