Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ramin committed Nov 22, 2023
1 parent 25c05d5 commit f85b358
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,19 @@ jobs:
setup:
runs-on: ubuntu-latest
outputs:
go-version: ${{ steps.go-version.outputs.version }}
go-version: ${{ steps.go-version.outputs.go-version }}

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Read .go-version file
id: go-version
run: echo "version=$(cat .go-version)" >> $GITHUB_ENV
run: cat .go-version

- name: Read .go-version file
id: go-version
run: echo "go-version=$(cat .go-version)" >> $GITHUB_ENV

lint:
needs: [setup]
Expand Down

0 comments on commit f85b358

Please sign in to comment.