Skip to content

fix incorrectly pinned dependency #35

fix incorrectly pinned dependency

fix incorrectly pinned dependency #35

Workflow file for this run

name: Push
on:
push:
branches:
- "*"
- "dependabot/**"
tags-ignore:
- "**"
jobs:
# ---- Quality Checks ----
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: pre-commit/[email protected]
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
pip install --upgrade pip
pip install poetry
- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- name: Define a cache for the virtual environment based on the dependencies lock file
uses: actions/cache@v3
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Set up Python environment
run: |
poetry install --with test
- name: Run Tests
run: poetry run pytest --junit-xml=testresults/test-client.xml
test-build:
# run a build, to make sure the build doesn't fail
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build Package
run: |
poetry build