Skip to content

Commit

Permalink
parameterize check action
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Aug 14, 2023
1 parent a2427d9 commit 56b4097
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Check get latest

on: [workflow_dispatch]
inputs:
version:
description: 'Version to check installation with'
required: true
default: 'latest'

jobs:
build:
Expand All @@ -18,6 +23,6 @@ jobs:
- name: Set up Clojure
uses: DeLaGuardo/[email protected]
with:
cli: latest
cli: ${{ github.event.inputs.version }}
- name: Use clojure
run: clojure --version

0 comments on commit 56b4097

Please sign in to comment.