Skip to content

Lock file maintenance #85

Lock file maintenance

Lock file maintenance #85

Workflow file for this run

on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
test:
runs-on: "ubuntu-latest"
steps:
# Basic setup
- uses: "actions/checkout@v4"
- run: "pipx install poetry"
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
cache: "pip"
# Install the dependencies
- run: "pip install ."
# Run all the tests
- run: "python -m dl4to4ocp.resize"
- run: "python -m dl4to4ocp.voxels"
- run: "python -m example.example"