Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Refactored the filenames and fixed the copy issue bug #166

Refactored the filenames and fixed the copy issue bug

Refactored the filenames and fixed the copy issue bug #166

Workflow file for this run

name: Build_CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.2
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Clean and Build
run: make clean build
- name: Test Coverage
run: make test-cover