Skip to content

Merge pull request #7 from yashipro13/fix/view-handler #497

Merge pull request #7 from yashipro13/fix/view-handler

Merge pull request #7 from yashipro13/fix/view-handler #497

Workflow file for this run

name: GoCI
on:
push:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Build
run: go build -v ./...
- name: Test
run: make lib.test
- name: Test Integration
run: |
make docker.start
sleep 30
make lib.test-integration
- name: Coverage
run: make lib.test-coverage