Skip to content

⬆️ Bump JRubics/poetry-publish from 1.16 to 2.0 #1311

⬆️ Bump JRubics/poetry-publish from 1.16 to 2.0

⬆️ Bump JRubics/poetry-publish from 1.16 to 2.0 #1311

Workflow file for this run

name: build
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
build:
runs-on: ubuntu-latest
environment: AUTH
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: make poetry-download
- name: Set up cache
uses: actions/cache@v3.3.2
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run style checks
run: |
make check-codestyle
- name: Run tests
env:
AUTH: "foobar"
run: |
make test-ci