Skip to content

Merge pull request #9 from Mvin8/refactor/codebase #78

Merge pull request #9 from Mvin8/refactor/codebase

Merge pull request #9 from Mvin8/refactor/codebase #78

Workflow file for this run

# name: Tests
# on: [push]
# jobs:
# build:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10"]
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - name: Set up Python # Set Python version
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# # Install pip and pytest
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install pytest
# pip install .
# - name: Test with pytest
# run: |
# pytest tests