Skip to content

Commit 65980df

Browse files
committed
add github build action
1 parent 602a17f commit 65980df

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout Code
8+
uses: actions/checkout@v4
9+
- name: Set up Go
10+
uses: actions/setup-go@v5
11+
with:
12+
go-version: '>=1.20.0'
13+
- name: Build
14+
run: go build -v
15+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![Go Build](https://github.com/aarzilli/nucular/actions/workflows/build.yml/badge.svg)
2+
13
Mostly-immediate-mode GUI library for Go.
24
Source port to go of an early version of [nuklear](https://github.com/vurtun/nuklear).
35

0 commit comments

Comments
 (0)