Add Dockerfile for Arch Linux (#146) #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: null | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
benchmarks: | |
name: Benchmarks | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 1s | |
--health-timeout 1s | |
--health-retries 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: redis, relay | |
tools: composer | |
coverage: none | |
- name: Install Composer dependencies | |
run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
- name: Test benchmarks | |
run: composer run bench -- --runs=1 |