Skip to content

Commit

Permalink
Create php.yml
Browse files Browse the repository at this point in the history
Build gh pages via PHP
  • Loading branch information
bobbravo2 authored Jan 19, 2024
1 parent afea4e3 commit 057f175
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: PHP Composer

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# Build the demo page with PHP, because, why not? CPU's are cheap in 2024 🤭 (and we support Unicode 🎉)
- name: build demo page
run: php index.php > index.html

0 comments on commit 057f175

Please sign in to comment.