Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Dec 7, 2024
1 parent 183049d commit aece87c
Show file tree
Hide file tree
Showing 3 changed files with 2,010 additions and 12 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on:
- pull_request
- push
jobs:
gen:
name: Code-Generation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Backend
uses: apioo/[email protected]
with:
client_id: '${{ secrets.SDKGEN_CLIENT_ID }}'
client_secret: '${{ secrets.SDKGEN_CLIENT_SECRET }}'
- name: Composer install
run: composer install --no-interaction --no-ansi --no-progress
- name: Run Psalm
run: vendor/bin/psalm --no-progress --show-info=false
Loading

0 comments on commit aece87c

Please sign in to comment.