Skip to content

Generated update. Please review before merging. #261

Generated update. Please review before merging.

Generated update. Please review before merging. #261

Workflow file for this run

name: tests
on:
push:
branches: ['**']
jobs:
pytest:
strategy:
fail-fast: false
matrix:
config:
- python-version: '3.8'
tox: py38
- python-version: '3.9'
tox: py39
- python-version: '3.10'
tox: py310
- python-version: '3.11'
tox: py311
poetry-version: [ "1.8.2" ]
os: [ ubuntu-22.04, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
name: Python ${{ matrix.config.python-version }} / Poetry ${{ matrix.poetry-version }} / ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install poetry
run: pipx install poetry
- name: Install Python ${{ matrix.config.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.python-version }}
cache: 'poetry'
- name: Install packages
run: poetry install --no-root
- name: Load cached tox
uses: actions/cache@v3
with:
path: .tox
key: tox-${{ matrix.os }}-poetry-${{ matrix.poetry-version }}-python-${{ matrix.config.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Setup API Key
env:
ORS_API_KEY: ${{ secrets.ORS_API_KEY }}
run: printf "[ORS]\napiKey = $ORS_API_KEY\n" > tests-config.ini
- name: Run tox
run: |
poetry run tox -e pytest-${{ matrix.config.tox }}