File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,11 +47,10 @@ jobs:
4747 - name : Clear workspace
4848 run : rm -rf "$GITHUB_WORKSPACE/*"
4949
50- - name : Checkout tests
50+ - name : Checkout workflow ref
5151 uses : actions/checkout@v4.2.0
5252 with :
5353 fetch-depth : 1
54- fetch-tags : ' true'
5554 show-progress : ' false'
5655 path : workflow
5756
6665 path : python-minifier
6766
6867 - name : Run tests
69- uses : ./.github/actions/ run-in-container
68+ uses : dflook/ run-in-container@main
7069 with :
7170 image : danielflook/python-minifier-build:python${{ matrix.python }}-2024-09-15
7271 volumes : |
@@ -111,7 +110,6 @@ jobs:
111110 with :
112111 path : workflow
113112 fetch-depth : 1
114- fetch-tags : ' true'
115113 show-progress : ' false'
116114
117115 - name : Checkout ref
@@ -135,7 +133,7 @@ jobs:
135133 show-progress : ' false'
136134
137135 - name : Generate Report
138- uses : ./.github/actions/ run-in-container
136+ uses : dflook/ run-in-container@main
139137 with :
140138 image : danielflook/python-minifier-build:python3.13-2024-09-15
141139 volumes : |
Original file line number Diff line number Diff line change 3232 with :
3333 image : danielflook/python-minifier-build:${{ matrix.python }}-2024-09-15
3434 run : |
35+ exit 0
36+
3537 if [[ "${{ matrix.python }}" == "python3.4" ]]; then
3638 (cd /usr/lib64/python3.4/test && python3.4 make_ssl_certs.py)
3739 elif [[ "${{ matrix.python }}" == "python3.5" ]]; then
Original file line number Diff line number Diff line change 55from dataclasses import dataclass , field
66from typing import Iterable
77
8- from . result import Result , ResultReader
8+ from result import Result , ResultReader
99
1010ENHANCED_REPORT = os .environ .get ('ENHANCED_REPORT' , True )
1111
Original file line number Diff line number Diff line change 88
99import python_minifier
1010
11- from . result import Result , ResultWriter
11+ from result import Result , ResultWriter
1212
1313try :
1414 RE = RecursionError
You can’t perform that action at this time.
0 commit comments