We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 602a17f commit 65980dfCopy full SHA for 65980df
.github/workflows/build.yml
@@ -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
@@ -1,3 +1,5 @@
+
Mostly-immediate-mode GUI library for Go.
Source port to go of an early version of [nuklear](https://github.com/vurtun/nuklear).
0 commit comments