From 67a34adbd2ffa6d9f43d7ad38940a57b26077795 Mon Sep 17 00:00:00 2001 From: Premiermoney <286675216+Premiermoney@users.noreply.github.com> Date: Sun, 7 Jun 2026 12:15:38 -0300 Subject: [PATCH 1/3] Create branch classification configuration Added branch classification schema for repository configuration. --- class | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 class diff --git a/class b/class new file mode 100644 index 0000000..c48924a --- /dev/null +++ b/class @@ -0,0 +1,15 @@ +# Schema taken from https://eng.ms/docs/cloud-ai-platform/devdiv/one-engineering-system-1es/1es-docs/product-catalog/branch-classification/branch-classification#optional-update-branch-classification-at-the-repo. +name: branch_classification +description: Branch classification configuration for repository +resource: repository +disabled: true +where: +configuration: + branchClassificationSettings: + defaultClassification: nonproduction + ruleset: + - name: prod-branches + branchNames: + - microsoft/main + - microsoft/release-branch.go* + classification: production From aae96e6f46636fd7c5bb09cd80ba1dade088b1ab Mon Sep 17 00:00:00 2001 From: Premiermoney <286675216+Premiermoney@users.noreply.github.com> Date: Sun, 7 Jun 2026 12:19:25 -0300 Subject: [PATCH 2/3] Clean up .gitignore by removing unused entries Removed various entries related to Composer, PHPUnit, IDEs, and OS. --- .gitignore | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index f82fc29..a1e2647 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1 @@ -# Composer -/vendor/ -composer.phar -composer-setup.php - -# PHPUnit -.phpunit.result.cache - -# IDE -.idea/ -.vscode/ -*.swp -*.swo -*~ - -# OS -.DS_Store -Thumbs.db +? From aa35767c7057153b39ca9129059682f41e948f23 Mon Sep 17 00:00:00 2001 From: Premiermoney <286675216+Premiermoney@users.noreply.github.com> Date: Sun, 7 Jun 2026 12:20:24 -0300 Subject: [PATCH 3/3] Add GitHub Actions workflow for Laravel tests --- .github/workflows/laravel.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/laravel.yml diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml new file mode 100644 index 0000000..c690791 --- /dev/null +++ b/.github/workflows/laravel.yml @@ -0,0 +1,35 @@ +name: Laravel + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: '8.0' + - uses: actions/checkout@v4 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit/Pest + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: php artisan test