Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/workflows/build.yaml

This file was deleted.

12 changes: 10 additions & 2 deletions .github/workflows/test-py.yaml → .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: Test Python
on:
push:
branches: ["main"]
paths:
- "src/**"
- ".github/workflows/test.yml"
pull_request:
branches: ["main"]
paths:
- "src/**"
- ".github/workflows/test.yml"

jobs:
lint:
Expand All @@ -19,7 +25,9 @@ jobs:
- name: Install deps
run: pip install -r requirements.txt
- name: Lint
run: ruff check python/ python/test/
run: ruff check src/ src/test/
- name: Format
run: ruff check src/ src/test/

unit:
name: Unit Tests
Expand All @@ -33,4 +41,4 @@ jobs:
- name: Install deps
run: pip install -r requirements.txt
- name: Pytest
run: PYTHONPATH=python pytest python/test/*.py
run: PYTHONPATH=src pytest src/test/
Empty file removed TubeFurnace/Makefile
Empty file.
Loading