Skip to content

changed the namespace from PhpSlides\Src to PhpSlides\Core #55

changed the namespace from PhpSlides\Src to PhpSlides\Core

changed the namespace from PhpSlides\Src to PhpSlides\Core #55

Workflow file for this run

name: Tests
on:
push:
branches:
- dev
pull_request:
branches:
- dev
permissions:
contents: write
jobs:
push_to_main:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Push changes to main
run: |
git checkout -b main
git reset --hard dev
git push -u -f origin main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}