Skip to content

Commit

Permalink
Create osmatrix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthebrit authored Aug 26, 2021
1 parent 284aafb commit 9057161
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/osmatrix.yml
Original file line number Diff line number Diff line change
@@ -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 }}"

0 comments on commit 9057161

Please sign in to comment.