We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d11a463 commit bcc8499Copy full SHA for bcc8499
1 file changed
.github/workflows/experiment.yml
@@ -67,8 +67,14 @@ jobs:
67
python -m pip install --upgrade pip setuptools wheel
68
python -m pip install nox
69
70
- - name: Run Dynamic Prerelease Check
+ - name: Run Prerelease Check
71
run: |
72
cd packages/gapic-generator
73
# Point the Nox engine to the newly generated package directory
74
- nox -s prerelease_deps -- ../${{ matrix.canary }}
+ nox -s prerelease_deps -- ../${{ matrix.canary }}
75
+
76
+ - name: Run Unit Tests
77
+ run: |
78
+ # Library check: Execute directly from the generated package directory
79
+ cd packages/${{ matrix.canary }}
80
+ nox -s unit-3.14
0 commit comments