From 9057161a296ac346858214776b6c237de7224624 Mon Sep 17 00:00:00 2001 From: John Savill Date: Thu, 26 Aug 2021 14:15:58 -0500 Subject: [PATCH] Create osmatrix.yml --- .github/workflows/osmatrix.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/osmatrix.yml diff --git a/.github/workflows/osmatrix.yml b/.github/workflows/osmatrix.yml new file mode 100644 index 0000000..dc64b52 --- /dev/null +++ b/.github/workflows/osmatrix.yml @@ -0,0 +1,22 @@ +# This is a basic workflow to help you get started with Actions + +name: OSMatrix + +# Controls when the workflow will run +on: + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + message: #name of job + strategy: + matrix: + os: + - ubuntu-latest + - windows-latest + - macos-latest + runs-on: ${{ matrix.os }} + + steps: + - name: Say hello to the OS + run: echo "Hello from ${{ matrix.ps }}"