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 668892e commit 7fd9890Copy full SHA for 7fd9890
.github/workflows/benchmark.yml
@@ -8,11 +8,18 @@ on:
8
9
jobs:
10
product:
11
- name: Product benchmark
+ name: Product benchmark on ${{ matrix.os }}
12
concurrency:
13
- group: ${{ github.workflow }}-benchmark-product-${{ github.ref }}
+ group: ${{ github.workflow }}-benchmark-product-${{ matrix.os }}-${{ github.ref }}
14
cancel-in-progress: true
15
runs-on: ubuntu-latest
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ os:
20
+ - ubuntu-latest
21
+ - macos-latest
22
+ - windows-latest
23
steps:
24
- name: Setup repository
25
uses: actions/checkout@v4
0 commit comments