added additional config #3
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: Matrix Configuration | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest, ubuntu-20.04, windows-latest] | |
images: [hello-world, alpine] | |
exclude: | |
- images: alpine | |
os: windows-latest | |
include: | |
- images: amd64/alpine | |
os: ubuntu-20.04 | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Echo Docker Details | |
run: docker info | |
- name: Run Image on ${{matrix.os}} | |
run: docker run ${{matrix.images}} |