Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/teguh02/rsa_php
Browse files Browse the repository at this point in the history
  • Loading branch information
teguh02 committed Jul 4, 2024
2 parents 1d08aee + 1d8f8d6 commit 4ed2710
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PHPUnit Tests

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

jobs:
test:
runs-on: ubuntu-latest

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

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3' # Adjust the PHP version as needed

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest

- name: Run PHPUnit tests
run: ./vendor/bin/phpunit --testdox tests

0 comments on commit 4ed2710

Please sign in to comment.