Skip to content

Commit

Permalink
Enabling running on this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
markbotterill committed Jan 19, 2024
1 parent 5e15223 commit dd8576e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pkg_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@ name: Machine Setup Testing

on:
workflow_dispatch:
inputs:
branchName:
description: 'Branch to run on'
required: true
default: 'setup-action'

jobs:
setup_apple_silicon:
runs-on: macos-13 # M1
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branchName }}

- name: Set up Apple Silicon machine
run: |
Expand All @@ -20,6 +27,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branchName }}

- name: Set up Apple Intel machine
run: |
Expand All @@ -31,6 +40,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branchName }}

- name: Set up Linux machine
run: |
Expand Down

0 comments on commit dd8576e

Please sign in to comment.