Skip to content

Commit 85df948

Browse files
author
Greg Bowler
authored
Create ci-latest.yml
1 parent fd9161c commit 85df948

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci-latest.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI-latest
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- uses: php-actions/composer@v6
13+
14+
- name: PHPUnit Tests
15+
uses: php-actions/phpunit@master
16+
env:
17+
TEST_NAME: Scarlett
18+
with:
19+
php_version: 8.3
20+
bootstrap: vendor/autoload.php
21+
configuration: test/phpunit.xml
22+
args: --coverage-text

0 commit comments

Comments
 (0)