Skip to content

Commit

Permalink
fix CICD again
Browse files Browse the repository at this point in the history
  • Loading branch information
LandonTClipp committed Jan 2, 2025
1 parent a6f23f1 commit 471d05e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/reusable-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Reusable Go Test

on:
workflow_call:
inputs:
ref:
required: false
type: string
default: ""

jobs:
test:
Expand All @@ -11,6 +16,11 @@ jobs:
os: ["macos-latest", "ubuntu-latest"]
go_vers: ["1.22", "1.23"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ inputs.ref }}

- name: Set up Go
uses: actions/setup-go@v2
with:
Expand Down

0 comments on commit 471d05e

Please sign in to comment.