Skip to content

Commit 702176d

Browse files
use explicit letters
1 parent 33ca92c commit 702176d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/verify.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
# We will parallelize by alphabet letter
17-
ascii_code: ${{ range(97, 102) }}
17+
letter: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
1818
fail-fast: false
1919
outputs:
2020
failed_libraries:
@@ -30,7 +30,7 @@ jobs:
3030
- working-directory: google-api-java-client-services
3131
run: |
3232
set -ex
33-
bash .github/workflows/verify.sh "$(printf "\x$(printf %x ${{ matrix.ascii_code }})")"
33+
bash .github/workflows/verify.sh "${{matrix.letter}}"
3434
print_results:
3535
needs: [verify]
3636
steps:

0 commit comments

Comments
 (0)