Skip to content

Add matrix.yaml

Add matrix.yaml #1

Workflow file for this run

name: matrix
on: push
jobs:
get-metrix:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
version: [12, 14]
runs-on: ${{ matrix.os }}
steps:
- name: check matrix
run: |
echo ${{ matrix.os }}
echo ${{ matrix.version }}