Skip to content

WIP

WIP #41

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# python-version: [3.11, 3.12, 3.13] TODO
python-version: [3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e .
- name: Run tests
# run: python3 -m unittest discover tests TODO
run: python3 -m unittest tests.test_disk.TestSymlinked.test_basic