We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276e381 commit f8e7383Copy full SHA for f8e7383
.github/workflows/test.yml
@@ -144,6 +144,20 @@ jobs:
144
run: |
145
docker build --% -f tests/windows.Dockerfile -t pyright-python .
146
147
+ docker-minimal:
148
+ name: docker (minimal)
149
+ runs-on: ubuntu-latest
150
+ steps:
151
+ - uses: actions/checkout@v3
152
+
153
+ - name: Docker Build
154
+ run: |
155
+ REF=$(echo $GITHUB_REF | sed 's/refs\/heads\///')
156
+ docker run python:3.11.4 /bin/sh -c "
157
+ pip install git+https://github.com/RobertCraigie/pyright-python.git@$REF && \
158
+ pyright --version
159
+ "
160
161
tests_status:
162
if: always()
163
0 commit comments