Skip to content

Commit

Permalink
Merge pull request #8 from uelei/feat/change-to-install-by-go-install
Browse files Browse the repository at this point in the history
🔧 refactor: move main.go to root folder
  • Loading branch information
uelei authored Nov 4, 2023
2 parents 0fae4d4 + 7d4e6a9 commit dc4f1d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:

- name: Build Windows
if: matrix.platform == 'windows-latest'
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }}.exe ./cmd/brl-rate-get/
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }}.exe .
- name: Build
if: matrix.platform != 'windows-latest'
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }} ./cmd/brl-rate-get/
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }} .

- name: Upload Artifact Windows
if: matrix.platform == 'windows-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- run: go vet cmd
- run: go vet .
- run: go test ./... -v -cover
File renamed without changes.

0 comments on commit dc4f1d1

Please sign in to comment.