Update go.yaml #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Cache Go modules | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install dependencies | |
run: go mod download | |
working-directory: ./go-app | |
- name: Build | |
run: go build -v ./... | |
working-directory: ./go-app | |
- name: Test | |
run: go test ./... | |
working-directory: ./go-app | |
- name: running tidy | |
run: go mod init github.com/charan-happy/MyApp/go-app | |
- name: Install golangci-lint | |
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest | |
env: | |
GOBIN: /go/bin | |
PATH: /go/bin:${{ env.PATH }} | |
working-directory: ./go-app | |
- name: Run Linter | |
run: golangci-lint run | |
working-directory: ./go-app | |
- name: Dockerhub Login | |
uses: docker/[email protected] | |
with: | |
username: ${{ vars.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build Docker image | |
run: docker build -t ${{ vars.DOCKERHUB_USERNAME }}/go-app ./go-app | |
- name: Push Docker image | |
run: docker push ${{ vars.DOCKERHUB_USERNAME }}/go-app |