Skip to content

Fix default retry

Fix default retry #26

Workflow file for this run

name: test
on:
pull_request:
paths:
- oapi/**
- pyproject.toml
- setup.py
- setup.cfg
- tests/**
- requirements.txt
- tox.ini
- .github/**
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python:
- 3.8
- 3.9
- '3.10'
- 3.11
- 3.12
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: install
run: make ci-install
- name: test
run: make test