Skip to content

Commit 3793f14

Browse files
committed
CI: use @master reference, add workflow_dispatch, add PHP 8.5 tests, add coverage workflow, remove kodiak
1 parent 37e4983 commit 3793f14

5 files changed

Lines changed: 43 additions & 25 deletions

File tree

.github/.kodiak.toml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/codesniffer.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: "Codesniffer"
22

33
on:
44
pull_request:
5+
workflow_dispatch:
56

67
push:
78
branches: ["*"]
@@ -10,8 +11,8 @@ on:
1011
- cron: "0 8 * * 1"
1112

1213
jobs:
13-
build:
14+
codesniffer:
1415
name: "Codesniffer"
15-
uses: contributte/.github/.github/workflows/codesniffer.yml@v1
16+
uses: contributte/.github/.github/workflows/codesniffer.yml@master
1617
with:
1718
php: "8.2"

.github/workflows/coverage.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Coverage"
2+
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
push:
8+
branches: ["*"]
9+
10+
schedule:
11+
- cron: "0 9 * * 1"
12+
13+
jobs:
14+
coverage:
15+
name: "Nette Tester"
16+
uses: contributte/.github/.github/workflows/nette-tester-coverage-v2.yml@master
17+
with:
18+
php: "8.2"

.github/workflows/phpstan.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ name: "Phpstan"
22

33
on:
44
pull_request:
5+
workflow_dispatch:
56

67
push:
78
branches: ["*"]
89

910
schedule:
10-
- cron: "0 8 * * 1"
11+
- cron: "0 10 * * 1"
1112

1213
jobs:
13-
build:
14+
phpstan:
1415
name: "Phpstan"
15-
uses: contributte/.github/.github/workflows/phpstan.yml@v1
16+
uses: contributte/.github/.github/workflows/phpstan.yml@master
1617
with:
1718
php: "8.2"

.github/workflows/tests.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,36 @@ name: "Nette Tester"
22

33
on:
44
pull_request:
5+
workflow_dispatch:
56

67
push:
78
branches: ["*"]
89

910
schedule:
10-
- cron: "0 8 * * 1"
11+
- cron: "0 10 * * 1"
1112

1213
jobs:
13-
build84:
14+
test85:
1415
name: "Nette Tester"
15-
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@v1
16+
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@master
1617
with:
17-
php: "8.4"
18+
php: "8.5"
1819

19-
build83:
20+
test84:
2021
name: "Nette Tester"
21-
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@v1
22+
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@master
2223
with:
23-
php: "8.3"
24+
php: "8.4"
2425

25-
build82:
26+
test83:
2627
name: "Nette Tester"
27-
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@v1
28+
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@master
2829
with:
29-
php: "8.2"
30+
php: "8.3"
31+
32+
test82:
33+
name: "Nette Tester"
34+
uses: contributte/.github/.github/workflows/nette-tester-mysql.yml@master
35+
with:
36+
php: "8.2"
37+
composer: "composer update --no-interaction --no-progress --prefer-dist --prefer-stable --prefer-lowest"

0 commit comments

Comments
 (0)