Skip to content

Corrected iSHARE brandname #10

Corrected iSHARE brandname

Corrected iSHARE brandname #10

Workflow file for this run

# https://github.com/actions/setup-python#caching-packages-dependencies
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
continuous-integration:
runs-on: ubuntu-latest
strategy:
matrix:
py: ["3.12", "3.11", "3.10", "3.9"]
name: Python v${{ matrix.py }} testing & linters
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
id: pyver
with:
python-version: ${{ matrix.py }}
check-latest: true
cache: 'poetry'
- name: ${{ steps.pyver.outputs.python-version }}
run: python --version
- run: poetry install --no-interaction --sync
- run: poetry run tox --recreate