File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 99 CORE_REPO_SHA : 955c92e91b5cd4bcfb43c39efcef086b040471d2
1010
1111jobs :
12- lint :
12+ lint-3_11 :
1313 strategy :
1414 fail-fast : false # ensures the entire test matrix is run, even if one permutation fails
1515 matrix :
5656 - " instrumentation-redis"
5757 - " instrumentation-remoulade"
5858 - " instrumentation-celery"
59- - " instrumentation-sklearn"
6059 - " instrumentation-system-metrics"
6160 - " instrumentation-threading"
6261 - " instrumentation-tornado"
9291 key : v7-build-tox-cache-${{ matrix.package }}-${{ hashFiles('tox.ini', 'gen-requirements.txt', 'dev-requirements.txt') }}
9392 - name : run tox
9493 run : tox -e lint-${{ matrix.package }}
94+
95+ lint-3_8 :
96+ strategy :
97+ fail-fast : false # ensures the entire test matrix is run, even if one permutation fails
98+ matrix :
99+ package :
100+ - " instrumentation-sklearn"
101+ os : [ubuntu-20.04]
102+ runs-on : ubuntu-20.04
103+ steps :
104+ - name : Checkout Contrib Repo @ SHA - ${{ github.sha }}
105+ uses : actions/checkout@v4
106+ - name : Set up Python 3.8
107+ uses : actions/setup-python@v5
108+ with :
109+ python-version : 3.8
110+ - name : Install tox
111+ run : pip install tox
112+ - name : Cache tox environment
113+ # Preserves .tox directory between runs for faster installs
114+ uses : actions/cache@v4
115+ with :
116+ path : |
117+ .tox
118+ ~/.cache/pip
119+ key : v7-build-tox-cache-${{ matrix.package }}-${{ hashFiles('tox.ini', 'gen-requirements.txt', 'dev-requirements.txt') }}
120+ - name : run tox
121+ run : tox -e lint-${{ matrix.package }}
You can’t perform that action at this time.
0 commit comments