Skip to content

Commit eed6c2d

Browse files
committed
Revert GHA
1 parent 00716fa commit eed6c2d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/quality.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
python -m pip install ".[quality]"
27+
python setup.py egg_info
28+
sed '/^$/q' src/lighteval.egg-info/requires.txt > src/lighteval.egg-info/requires_lite.txt
29+
python -m pip install ruff -c src/lighteval.egg-info/requires_lite.txt
30+
rm -rf src/lighteval.egg-info
2831
- name: Code quality
2932
run: |
3033
make quality

0 commit comments

Comments
 (0)