Skip to content

Commit

Permalink
add first action
Browse files Browse the repository at this point in the history
  • Loading branch information
asciito committed Oct 7, 2023
1 parent f38aeab commit 5ffb23b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: test-cli
run-name: Testing CLI
on:
push:
branches:
- test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: zip, mbstring

- name: Run Test
run: php google-for-testing test

0 comments on commit 5ffb23b

Please sign in to comment.