Skip to content

Merge pull request #481 from metacall/dependabot/bundler/source/scrip… #557

Merge pull request #481 from metacall/dependabot/bundler/source/scrip…

Merge pull request #481 from metacall/dependabot/bundler/source/scrip… #557

Workflow file for this run

name: Linux Test
on:
workflow_dispatch:
pull_request:
push:
tags:
- 'v*.*.*'
branches:
- master
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linux-test:
name: Linux GCC Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build: [debug, release]
image: ["debian:trixie-slim", "debian:bookworm-slim", "ubuntu:jammy"] # TODO: "alpine:3.17"
steps:
- name: Check out the repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install, build and run tests
run: ./docker-compose.sh test
env:
METACALL_BUILD_TYPE: ${{ matrix.build }}
METACALL_BASE_IMAGE: ${{ matrix.image }}