Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Add project report

Add project report #64

Workflow file for this run

name: Python Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup Python environment
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11' # Change to your Python version
# Install Poetry
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
# Configure Poetry
- name: Configure Poetry
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
# Install dependencies using Poetry
- name: Install dependencies
run: |
poetry install
# Run tests using pytest
- name: Run tests
run: |
poetry run pytest master