Skip to content

Commit

Permalink
fix: adds runner os input
Browse files Browse the repository at this point in the history
  • Loading branch information
Equartey committed Aug 31, 2023
1 parent ffc1875 commit b4788ac
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/flutter_vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ on:
description: The working directory relative to the repo root
required: true
type: string
runner-os:
description: The OS the tests should run on
required: false
type: string
default: ubuntu-latest

jobs:
test:
name: Test
runs-on: ubuntu-latest
runs-on: ${{ inputs.runner-os }}
timeout-minutes: 60
strategy:
# Allows other matrix items to run if one fails
Expand Down

0 comments on commit b4788ac

Please sign in to comment.