Skip to content

Remove python from docker image #201

Remove python from docker image

Remove python from docker image #201

Workflow file for this run

name: "Run Tests"
on:
push:
paths:
- 'src/**'
- 'tests/**'
- 'templates/**'
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
APP_ENV: test
jobs:
tests:
name: "Tests"
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "intl, zip, redis"
php-version: "8.1"
tools: composer
- name: "Install dependencies"
uses: "ramsey/composer-install@v2"
with:
composer-options: "--ansi --no-interaction"
- name: Start Redis
uses: "supercharge/[email protected]"
with:
redis-version: 6
- name: "Run tests"
run: "composer tests"