Skip to content

build: init project

build: init project #1

Workflow file for this run

# Copyright © 2023 KubeCub open source community. All rights reserved.
# Licensed under the MIT License (the "License");
# you may not use this file except in compliance with the License.
name: CI
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v1
with:
go-version: '1.18'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download modules
run: go get -d -v ./...
- name: Build
run: make build