Skip to content

Update go.yaml

Update go.yaml #96

Workflow file for this run

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