Skip to content

Merge pull request #46 from YukiOnishi1129/feature/YL-90 #52

Merge pull request #46 from YukiOnishi1129/feature/YL-90

Merge pull request #46 from YukiOnishi1129/feature/YL-90 #52

name: batch_service_pr_check
on:
push:
branches:
- "main"
- "develop"
- "feature/*"
- "feat/*"
- "YL-*"
paths:
- "batch-service/**"
- ".github/workflows/batch_service_pr_check.yml"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
defaults:
run:
working-directory: ./batch-service
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
cache: false
- name: Install dependencies
run: go mod download
- name: Go Lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest && make lint
- name: Go Test
run: go test -v ./...
- name: Go Build
run: go build -v ./...