Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit 401e70b

Browse files
committed
changed the namespace from PhpSlides\Src to PhpSlides\Core
1 parent dbadaa1 commit 401e70b

File tree

1 file changed

+1
-38
lines changed

1 file changed

+1
-38
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -12,45 +12,8 @@ permissions:
1212
contents: write
1313

1414
jobs:
15-
test:
16-
runs-on: ubuntu-latest
17-
18-
strategy:
19-
matrix:
20-
php-version: [8.2, 8.3, 8.4]
21-
include:
22-
- php-version: 8.3
23-
24-
steps:
25-
- name: Checkout repository
26-
uses: actions/checkout@v4
27-
28-
- name: Set up PHP
29-
uses: shivammathur/setup-php@v2
30-
with:
31-
php-version: ${{ matrix.php-version }}
32-
extensions: mbstring, intl, curl, dom, fileinfo
33-
tools: composer
34-
35-
- name: Cache Composer packages
36-
id: composer-cache
37-
uses: actions/cache@v3
38-
with:
39-
path: vendor
40-
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
41-
restore-keys: |
42-
${{ runner.os }}-php-
43-
44-
- name: Install dependencies
45-
run: composer install --prefer-dist --no-progress
46-
47-
- name: Run Tests
48-
run: composer run-script test
49-
5015
push_to_main:
5116
runs-on: ubuntu-latest
52-
needs: test
53-
if: ${{ success() }}
5417

5518
steps:
5619
- name: Checkout repository
@@ -65,7 +28,7 @@ jobs:
6528
run: |
6629
git fetch origin main dev
6730
git checkout main
68-
git pull --no-rabase=true
31+
git pull --rebase
6932
git push origin main
7033
env:
7134
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)