Skip to content

CI hygiene: drop dead env, bump actions, cache pip, enforce ruff #19

CI hygiene: drop dead env, bump actions, cache pip, enforce ruff

CI hygiene: drop dead env, bump actions, cache pip, enforce ruff #19

Workflow file for this run

name: Docker Build and Test
on:
push:
branches:
- main
paths-ignore:
- README.md
pull_request:
branches:
- main
paths-ignore:
- README.md
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t harmony-test .
- name: Run tests inside Docker container
run: |
docker run \
-e PYTHONPATH=/app/src \
harmony-test