Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(laravel-one): support markdown #123

Merged
merged 15 commits into from
Nov 5, 2023
Merged
9 changes: 4 additions & 5 deletions .github/workflows/laravel-one-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:
working-directory: ./laravel-one

env:
php_version: 8.1
php_version: 81

jobs:

Expand All @@ -21,6 +21,7 @@ jobs:
concurrency:
group: laravel-one-release
cancel-in-progress: false
container: ghcr.io/abenevaut/vapor-ci:php${{ env.php_version }}
steps:

- name: Checkout project
Expand All @@ -32,10 +33,8 @@ jobs:
id: branch-name
run: echo "SOURCE_TAG=${GITHUB_REF#refs/tags/phpunit-slicer-}" >> $GITHUB_OUTPUT

- name: Initialize PHP ${{ env.php_version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.php_version }}
- name: Install PHP extension
run: docker-php-ext-install exif

- name: Configure Composer cache
id: composer-cache
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/laravel-one-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,23 @@ jobs:
strategy:
fail-fast: true
matrix:
php_version: [ 8.1, 8.2 ]
php_version: [ 81, 82 ]
include:
- php_version: 8.2
- php_version: 82
record_coverage: true
concurrency:
group: laravel-one-test-${{ github.workflow }}-${{ github.ref }}-${{ matrix.php_version }}
cancel-in-progress: true
container: ghcr.io/abenevaut/vapor-ci:latest
container: ghcr.io/abenevaut/vapor-ci:php${{ matrix.php_version }}
steps:

- name: Checkout project
uses: actions/checkout@v3
with:
fetch-depth: 2

- name: Initialize PHP ${{ matrix.php_version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
coverage: pcov
- name: Install PHP extension
run: docker-php-ext-install exif

- name: Configure Composer cache
id: composer-cache
Expand Down Expand Up @@ -74,6 +71,6 @@ jobs:

- name: Send coverage
if: ${{ matrix.record_coverage }}
run: bash <(curl -s https://codecov.io/bash) -f coverage/clover.xml -F laravel-one
run: codecov -f coverage/clover.xml -F laravel-one
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6 changes: 6 additions & 0 deletions .idea/opensource.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/phpspec.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/phpunit.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions laravel-one/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"illuminate/view": "^10.9",
"nunomaduro/termwind": "^1.15",
"spatie/laravel-data": "^3.5",
"spatie/laravel-markdown": "^2.4",
"spatie/laravel-sitemap": "^6.3",
"symfony/yaml": "^6.2"
},
Expand Down
Loading