Skip to content

Run CI tests on any branch #3

Run CI tests on any branch

Run CI tests on any branch #3

Workflow file for this run

name: Test
on:
push:
branches:
pull_request:
branches:
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "cache_dir=$(composer config cache-files-dir)" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
path: ${{ env.cache_dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
run: |
composer install --no-dev --no-interaction --no-scripts
- name: Run PHPUnit tests
run: |
composer install --no-interaction --no-scripts
./scripts/test/unit.sh
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
cache-dependency-path: cli/go.sum
- name: Run integration tests
run: |
export TEST_CLI_PATH=$(realpath "./bin/platform")
cd go-tests
go test ./... -v