Skip to content

Commit 0d12854

Browse files
committed
updated checks
1 parent 978ff97 commit 0d12854

32 files changed

+995
-627
lines changed

.github/workflows/tox-tests.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Run tox checks
2+
3+
on: [push]
4+
5+
jobs:
6+
worker:
7+
name: Run checks
8+
runs-on: ubuntu-22.04
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
17+
- name: install dependencies
18+
run: |
19+
pip install -r requirements.txt -r dev-requirements.txt
20+
21+
- name: Run tox checks
22+
run: tox

Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,8 @@ clean-checkpoints:
1818
clean-history:
1919
rm -rf history.json
2020

21-
gen-dataset:
22-
python dataset.py
23-
24-
train:
25-
python train.py --checkpoint "$(CHECKPOINT)"
26-
2721
pack:
2822
zip -r dataset-images.zip dataset/
2923

30-
31-
ghz: clean-ghz
32-
python ghz.py
33-
3424
lock:
35-
conda-lock -f environment.yml
25+
conda-lock -f environment.yml

ai/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)