generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
93 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,58 +3,54 @@ name: CI | |
on: | ||
push: | ||
branches: | ||
- '*' | ||
- "*" | ||
tags: | ||
- '*' | ||
- "*" | ||
pull_request: | ||
branches: | ||
- '*' | ||
- "*" | ||
|
||
jobs: | ||
build: | ||
if: "!contains(github.event.head_commit.message, 'skip ci')" | ||
|
||
runs-on: ubuntu-latest | ||
|
||
timeout-minutes: 15 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: | ||
- '8.1' | ||
- '8.2' | ||
- '8.3' | ||
kubernetes: | ||
- '1.26.11' | ||
- '1.27.8' | ||
- '1.28.4' | ||
laravel: | ||
- 9.* | ||
- 10.* | ||
prefer: | ||
- 'prefer-lowest' | ||
- 'prefer-stable' | ||
php: ['8.1', '8.2', '8.3'] | ||
kubernetes: ['1.26.11', '1.27.8', '1.28.4'] | ||
laravel: ['9.*', '10.*', '11.*'] | ||
prefer: [prefer-lowest, prefer-stable] | ||
include: | ||
- laravel: 9.* | ||
testbench: 7.* | ||
- laravel: 10.* | ||
testbench: 8.* | ||
- laravel: "9.*" | ||
testbench: "7.*" | ||
- laravel: "10.*" | ||
testbench: "8.*" | ||
- laravel: "11.*" | ||
testbench: "9.*" | ||
exclude: | ||
- laravel: "11.*" | ||
php: "8.1" | ||
|
||
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - K8s v${{ matrix.kubernetes }} --${{ matrix.prefer }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- 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, bcmath, soap, intl, gd, exif, iconv, yaml | ||
coverage: pcov | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, yaml | ||
coverage: pcov | ||
|
||
- name: Get composer cache directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- name: Get composer cache directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Prepare cache key | ||
id: prep | ||
|
@@ -68,49 +64,45 @@ jobs: | |
echo "cache-key=composer-php-$PHP_VERSION-$LARAVEL_VERSION-$PREFER_VERSION-${{ hashFiles('composer.json') }}" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v3 | ||
name: Cache dependencies | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ steps.prep.outputs.cache-key }} | ||
|
||
- uses: medyagh/setup-minikube@latest | ||
name: Setup Minikube | ||
with: | ||
minikube-version: 1.32.0 | ||
driver: docker | ||
container-runtime: containerd | ||
kubernetes-version: "v${{ matrix.kubernetes }}" | ||
|
||
- name: Run Kubernetes Proxy | ||
run: | | ||
kubectl proxy --port=8080 --reject-paths="^/non-existent-path" & | ||
- name: Install dependencies | ||
run: | | ||
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | ||
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction | ||
- name: Setup in-cluster config | ||
run: | | ||
sudo mkdir -p /var/run/secrets/kubernetes.io/serviceaccount | ||
echo "some-token" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/token | ||
echo "c29tZS1jZXJ0Cg==" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/ca.crt | ||
echo "some-namespace" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/namespace | ||
sudo chmod -R 777 /var/run/secrets/kubernetes.io/serviceaccount/ | ||
- name: Setting CRDs for testing | ||
run: | | ||
kubectl apply -f https://raw.githubusercontent.com/bitnami-labs/sealed-secrets/main/helm/sealed-secrets/crds/bitnami.com_sealedsecrets.yaml | ||
# - name: Run static analysis | ||
# run: | | ||
# vendor/bin/psalm | ||
|
||
- name: Run tests | ||
run: | | ||
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml | ||
- uses: codecov/[email protected] | ||
with: | ||
fail_ci_if_error: false | ||
- uses: actions/cache@v3 | ||
name: Cache dependencies | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ steps.prep.outputs.cache-key }} | ||
|
||
- uses: medyagh/setup-minikube@latest | ||
name: Setup Minikube | ||
with: | ||
minikube-version: 1.32.0 | ||
driver: docker | ||
container-runtime: containerd | ||
kubernetes-version: "v${{ matrix.kubernetes }}" | ||
|
||
- name: Run Kubernetes Proxy | ||
run: | | ||
kubectl proxy --port=8080 --reject-paths="^/non-existent-path" & | ||
- name: Install dependencies | ||
run: | | ||
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | ||
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction | ||
- name: Setup in-cluster config | ||
run: | | ||
sudo mkdir -p /var/run/secrets/kubernetes.io/serviceaccount | ||
echo "some-token" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/token | ||
echo "c29tZS1jZXJ0Cg==" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/ca.crt | ||
echo "some-namespace" | sudo tee /var/run/secrets/kubernetes.io/serviceaccount/namespace | ||
sudo chmod -R 777 /var/run/secrets/kubernetes.io/serviceaccount/ | ||
- name: Setting CRDs for testing | ||
run: | | ||
kubectl apply -f https://raw.githubusercontent.com/bitnami-labs/sealed-secrets/main/helm/sealed-secrets/crds/bitnami.com_sealedsecrets.yaml | ||
- name: Run tests | ||
run: | | ||
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml | ||
- uses: codecov/[email protected] | ||
with: | ||
fail_ci_if_error: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters