Skip to content

chore(mongodb): release of MongoDB PHP extension 1.20.0 #95

chore(mongodb): release of MongoDB PHP extension 1.20.0

chore(mongodb): release of MongoDB PHP extension 1.20.0 #95

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
unit-tests:
name: "Unit Tests (${{ matrix.stack }})"
runs-on: ubuntu-22.04
strategy:
matrix:
stack:
- scalingo-20
- scalingo-22
container:
image: "scalingo/${{ matrix.stack }}:latest"
env:
STACK: "${{ matrix.stack }}"
steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
- name: 🔎 Run tests
run: |
test/run
...