Skip to content

Commit

Permalink
Create Continuous Integration action
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym committed Jan 18, 2024
1 parent 74b0047 commit ab428d1
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Continuous Integration

on:
push:
paths-ignore:
- '**.md'
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest

- name: Run test suite
run: composer run-script test

- name: Create directory and initialize SQLite database with table
run: |
mkdir -p var/db
sqlite3 var/db/todo.sqlite3 "CREATE TABLE todo (id INTEGER PRIMARY KEY, todo TEXT, created_at TEXT);"
- name: Post ang Get todos resource
run: |
php bin/test.php post '/todos?todo=shopping'
php bin/test.php get '/todos?id=1'

0 comments on commit ab428d1

Please sign in to comment.