windows: fix gem: --no-document in gemrc #320
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build & Test | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- dockerfile: v1.17/alpine | |
- dockerfile: v1.17/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 |