Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit e90883b

Browse files
committed
add github action stuff
1 parent ba522a5 commit e90883b

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/test.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
on:
2+
push:
3+
tags:
4+
- '*'
5+
branches:
6+
- master
7+
pull_request:
8+
types:
9+
- opened
10+
- synchronize
11+
12+
jobs:
13+
tests:
14+
name: CI Tests & Release
15+
runs-on: ubuntu-latest
16+
environment: CI
17+
steps:
18+
- uses: actions/checkout@v3
19+
- name: Setup PHP
20+
uses: shivammathur/setup-php@v2
21+
with:
22+
php-version: '8.3'
23+
- name: Install Dependencies
24+
run: |
25+
composer install
26+
- name: Lint
27+
continue-on-error: true
28+
run: |
29+
composer exec pint
30+
- name: Test
31+
run: |
32+
composer exec pest

0 commit comments

Comments
 (0)