Skip to content

Commit 5c2b783

Browse files
committed
Move env in proper place?
1 parent d0349d7 commit 5c2b783

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/github-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
on: [push, pull_request]
2-
env:
3-
HUNTER_TEST_TIMEOUT: 30
42
jobs:
53
test:
64
name: ${{ matrix.name }}
75
runs-on: ${{ matrix.os }}
86
timeout-minutes: 30
7+
env:
8+
HUNTER_TEST_TIMEOUT: 30
99
strategy:
1010
fail-fast: false
1111
matrix:

ci/templates/.github/workflows/github-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
on: [push, pull_request]
2-
env:
3-
HUNTER_TEST_TIMEOUT: 30
42
jobs:
53
test:
64
name: {{ '${{ matrix.name }}' }}
75
runs-on: {{ '${{ matrix.os }}' }}
86
timeout-minutes: 30
7+
env:
8+
HUNTER_TEST_TIMEOUT: 30
99
strategy:
1010
fail-fast: false
1111
matrix:

0 commit comments

Comments
 (0)