Skip to content

Commit

Permalink
Fix job names which are required to follow an identifer syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
godofredoc committed Aug 25, 2023
1 parent 8ebf9a5 commit dc1e974
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
permissions: read-all

jobs:
tests for linux:
linux_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
Expand All @@ -28,15 +28,15 @@ jobs:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: ${{ matrix.name }}
run: scripts/verify_tests_on_master.sh --shards 3 --shard-index ${{ matrix.shard-index }}
tests for skp_generator:
skp_generator_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: skp_generator
run: (cd skp_generator && ./build.sh)
tests for windows:
windows_tests:
runs-on: windows-latest
strategy:
fail-fast: true
Expand All @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: ${{ matrix.name }}
run: scripts\verify_tests_on_master.bat --shards 5 --shard-index ${{ matrix.shard-index }}
tests for macos:
macos_tests:
runs-on: macos-latest
strategy:
fail-fast: true
Expand Down

0 comments on commit dc1e974

Please sign in to comment.