Skip to content

Commit

Permalink
Tests via Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
josephscott committed Nov 24, 2024
1 parent b4a5b8b commit ec7a622
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on: [ push, pull_request ]

jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.3', '8.4']
name: PHP ${{ matrix.php-versions }}

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
#extensions: memcached

- name: Install Dependencies
run: composer install

- name: Tests
run: make tests
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog


## ??? : ????
- Tests via Github Actions

## 0.0.3 : 2024-11-04
- Turn off `native_function_invocation`
Expand Down

0 comments on commit ec7a622

Please sign in to comment.