Skip to content

feat : add e2e test of logger #2

feat : add e2e test of logger

feat : add e2e test of logger #2

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: E2E TEST
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
go-version: ['1.21']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}