Skip to content

Commit

Permalink
add gitflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MRizki28 committed Aug 8, 2024
1 parent 452df70 commit 4b3e215
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'

- name: Install dependencies
run: composer install

- name: Run tests
run: vendor/bin/phpunit

0 comments on commit 4b3e215

Please sign in to comment.