Skip to content

Add files to call other code for API testing #21

Add files to call other code for API testing

Add files to call other code for API testing #21

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
- '!main'
defaults:
run:
shell: pwsh
jobs:
ci:
name: CI
runs-on: Ubuntu-Latest
strategy:
matrix:
version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version}}
- name: Setup Project
run: bash setup.sh
- name: Run Test Suite
run: python -m pytest