Skip to content

Merge pull request #70 from crazy-max/dependabot/go_modules/golang.or… #71

Merge pull request #70 from crazy-max/dependabot/go_modules/golang.or…

Merge pull request #70 from crazy-max/dependabot/go_modules/golang.or… #71

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
pull_request:
jobs:
alpine:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
variant:
- 3.14
- 3.15
- 3.16
- edge
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Test
uses: docker/bake-action@v5
with:
targets: test-alpine
env:
TEST_ALPINE_VARIANT: ${{ matrix.variant }}
debian:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
variant:
- buster
- bullseye
- sid
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Test
uses: docker/bake-action@v5
with:
targets: test-debian
env:
TEST_DEBIAN_VARIANT: ${{ matrix.variant }}