Skip to content

Commit

Permalink
Merge pull request #2 from envor/main
Browse files Browse the repository at this point in the history
add basic testing workflow
  • Loading branch information
inmanturbo authored Feb 25, 2024
2 parents c4f2ee0 + e66a9f2 commit ecbf169
Show file tree
Hide file tree
Showing 5 changed files with 184 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to `one-app` will be documented in this file.

## v1.0.1 - 2024-02-25

### What's Changed

* include default phpunit.xml for better quickstart by @inmanturbo in https://github.com/envor/one-app/pull/1

### New Contributors

* @inmanturbo made their first contribution in https://github.com/envor/one-app/pull/1

**Full Changelog**: https://github.com/envor/one-app/compare/v1.0.0...v1.0.1

## v1.0.0 - 2024-02-25

**Full Changelog**: https://github.com/envor/one-app/commits/v1.0.0
55 changes: 55 additions & 0 deletions passport/stubs/.gihub/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Tests

on:
push:
branches:
- main
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'

permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]

name: PHP ${{ matrix.php }}

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none

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

- name: Copy environment file
run: cp .env.example .env

- name: build frontend
run: npm install && npm run build

- name: Generate app key
run: php artisan key:generate

- name: generate passport keys
run: php artisan passport:keys --force --length=4096 --no-interaction

- name: Execute tests
run: vendor/bin/pest
env:
PLATFORM_DB_CONNECTION: testing_platform
52 changes: 52 additions & 0 deletions stubs/.github/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Tests

on:
push:
branches:
- main
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'

permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]

name: PHP ${{ matrix.php }}

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none

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

- name: Copy environment file
run: cp .env.example .env

- name: build frontend
run: npm install && npm run build

- name: Generate app key
run: php artisan key:generate

- name: Execute tests
run: vendor/bin/pest
env:
PLATFORM_DB_CONNECTION: testing_platform
13 changes: 13 additions & 0 deletions stubs/.github/update-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: update changelog

on:
release:
types: [released]

permissions: {}

jobs:
update:
permissions:
contents: write
uses: laravel/.github/.github/workflows/update-changelog.yml@main
52 changes: 52 additions & 0 deletions stubs/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Tests

on:
push:
branches:
- main
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'

permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]

name: PHP ${{ matrix.php }}

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none

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

- name: Copy environment file
run: cp .env.example .env

- name: build frontend
run: npm install && npm run build

- name: Generate app key
run: php artisan key:generate

- name: Execute tests
run: vendor/bin/pest
env:
PLATFORM_DB_CONNECTION: testing_platform

0 comments on commit ecbf169

Please sign in to comment.