mirror of
https://github.com/opbnq-q/nto-cli.git
synced 2025-12-06 15:40:34 +07:00
Create build_go.yaml
This commit is contained in:
22
.github/workflows/build_go.yaml
vendored
Normal file
22
.github/workflows/build_go.yaml
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '1.24.1'
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: go build -v ./...
|
||||||
Reference in New Issue
Block a user