Skip to content

self generating openapi documentation #18

self generating openapi documentation

self generating openapi documentation #18

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.11]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Install the latest version of rye
uses: eifinger/setup-rye@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
rye sync
- name: Lint
run: |
rye lint
- name: Tests
run: |
rye test