Skip to content

Debugging action 1

Debugging action 1 #5

Workflow file for this run

on: [push]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry==1.7.1
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10.6'
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-interaction --no-ansi
- name: Debugging
run: ls
- name: Test
run: pytest