Skip to content

Commit

Permalink
more testing workflow (silly me I used the wrong output)
Browse files Browse the repository at this point in the history
  • Loading branch information
catdevman committed Mar 16, 2024
1 parent d3031a7 commit f79d12e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
if: steps.filter.outputs.workflows == 'true'
if: steps.filter.outputs.go == 'true'
run: go version
- name: workflow tests
if: steps.filter.outputs.workflows == 'true'
if: steps.filter.outputs.go == 'true'
run: go test ./... -v

1 change: 1 addition & 0 deletions go/twosum/twosum.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package twosum

func TwoSum(nums []int, target int) []int {
// Add a comment for a change to be detected
// Another comment for testings
out := []int{}
return out
}

0 comments on commit f79d12e

Please sign in to comment.