Skip to content

Merge pull request #410 from fluent/fix-link #360

Merge pull request #410 from fluent/fix-link

Merge pull request #410 from fluent/fix-link #360

Workflow file for this run

name: Linux
on:
push:
pull_request:
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Build & Test
strategy:
fail-fast: false
matrix:
include:
- dockerfile: v1.18/alpine
- dockerfile: v1.18/debian
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build
run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test
- name: Test
run: make test DOCKERFILE=${{ matrix.dockerfile }} VERSION=test