Skip to content

added initial set of files #9

added initial set of files

added initial set of files #9

Workflow file for this run

name: CI
"on":
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ansi:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: |
set -ex
docker compose --ansi=always up -d
docker compose --ansi=always stop
no-ansi:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: |
set -ex
docker compose --ansi=never up -d
docker compose --ansi=never stop
castor:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cmd:
- ansi-false-false
- ansi-false-true
- ansi-true-false
- no-ansi-false-false
- no-ansi-false-true
- no-ansi-true-false
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: castor
- run: |
set -ex
castor debug
castor ${{ matrix.cmd }}