Merge pull request #18 from Roborian/17--add-new-method-add_person_to… #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test OutsetaPy | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-latest, macos-latest] | |
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install requirements. | |
run: pip3 install -r requirements.txt | |
- name: Setup test execution environment. | |
run: pip3 install -r requirements-meta.txt | |
- name: Run tox tests | |
run: tox -- --durations=0 --timeout=30 | |
typecheck: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Setup test execution environment. | |
run: pip3 install -r requirements-meta.txt | |
- name: Run tox tests | |
run: tox -e typecheck |