Skip to content

Merge pull request #447 from Scalingo/fix/439/mongodb-1.19.3 #85

Merge pull request #447 from Scalingo/fix/439/mongodb-1.19.3

Merge pull request #447 from Scalingo/fix/439/mongodb-1.19.3 #85

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
...