Skip to content

Fixing larger merge conflict #20

Fixing larger merge conflict

Fixing larger merge conflict #20

---
name: Testing GH Actions
on:
- push
jobs:
poetry-deps:
strategy:
matrix:
python-version: ["3.12"]
platform: ["ubuntu-22.04"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install --no-root
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Display installed packages
run: poetry run pip list