Skip to content

Commit 11e285e

Browse files
authored
Merge pull request #25 from maartenpaauw/feature/run-unit-tests-on-linux-only
Run unit tests only linux only
2 parents f285456 + 67e593a commit 11e285e

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@ name: code-coverage
22

33
on:
44
push:
5-
branches:
6-
- develop
7-
- main
5+
branches: [main]
86
pull_request:
9-
branches:
10-
- develop
11-
- main
7+
branches: [main]
128

139
jobs:
1410
test:

.github/workflows/run-tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@ name: run-tests
22

33
on:
44
push:
5-
branches: [develop, main]
5+
branches: [main]
66
pull_request:
7-
branches: [develop, main]
7+
branches: [main]
88

99
jobs:
1010
test:
11-
runs-on: ${{ matrix.os }}
11+
runs-on: ubuntu-latest
1212
timeout-minutes: 5
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
os: [ubuntu-latest, windows-latest]
1716
php: [8.3, 8.2, 8.1]
1817
laravel: [11.*, 10.*]
1918
stability: [prefer-lowest, prefer-stable]
@@ -26,7 +25,7 @@ jobs:
2625
- laravel: 11.*
2726
php: 8.1
2827

29-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
28+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
3029

3130
steps:
3231
- name: Checkout code

0 commit comments

Comments
 (0)