Skip to content

Modifications made in response to suggestions 1 and 3 raised by Mr. Daniel during the TDML meeting #11

Modifications made in response to suggestions 1 and 3 raised by Mr. Daniel during the TDML meeting

Modifications made in response to suggestions 1 and 3 raised by Mr. Daniel during the TDML meeting #11

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
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.9'
- name: Cache pip dependencies
id: cache-pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install .[dev] && pip install .[all]
- name: Run tests
run: pytest