Skip to content

Commit e78a3c1

Browse files
1000-x-t30claude
andcommitted
chore: migrate CI from Bitbucket Pipelines to GitHub Actions
Replace bitbucket-pipelines.yml with a GitHub Actions workflow that runs PHP CodeSniffer (composer lint). Follow the workflow style used in appleple/custom-field-maker (setup action + matrix). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent bd97e5f commit e78a3c1

2 files changed

Lines changed: 26 additions & 14 deletions

File tree

.github/workflows/php.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: PHP CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-version: [8.3]
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Use PHP ${{ matrix.php-version }}
17+
uses: shivammathur/setup-php@v2
18+
with:
19+
php-version: ${{ matrix.php-version }}
20+
tools: composer
21+
- name: Install dependencies
22+
run: |
23+
composer install --no-progress --prefer-dist
24+
- name: Lint
25+
run: |
26+
composer lint

bitbucket-pipelines.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)