Skip to content

Commit

Permalink
Test build on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
kpicaza committed Apr 10, 2024
1 parent 9ba6069 commit 8b93569
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:

jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: dom, curl, libxml, mbstring, zip, gd
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none

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

- name: Run build
run: php artisan native:build

0 comments on commit 8b93569

Please sign in to comment.