Skip to content

Setup OS tests

Setup OS tests #4

Workflow file for this run

# This is a basic workflow that is manually triggered
name: Setup OS tests
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
installation_setup:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: say hello
shell: bash
run: echo "HELLO"