Skip to content

Commit 1518b43

Browse files
Added github actions
1 parent 6b840ca commit 1518b43

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: php-actions/composer@v6 # or alternative dependency management
12+
- uses: php-actions/phpunit@v3
13+
with:
14+
php_version: '8.1'
15+
- uses: actions/upload-artifact@v2
16+
with:
17+
name: debug-output
18+
path: output.log

0 commit comments

Comments
 (0)