Skip to content

feat(test): Integration test #17

feat(test): Integration test

feat(test): Integration test #17

Workflow file for this run

name: CI
on:
push:
branches: [ $default-branch ]
pull_request:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: make build
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Test
run: make test