Skip to content

reformat naming convention #57

reformat naming convention

reformat naming convention #57

name: compatability_testing
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
dependencies: ["latest"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
if [ "${{ matrix.dependencies }}" = "latest" ]; then
pip install .
else
pip install .[minimum]
fi
shell: bash
- name: Test with pytest
env:
API_KEY: ${{ secrets.API_KEY }}
run: |
pip install pytest
pytest