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 4c70462 commit 7fecc58Copy full SHA for 7fecc58
.github/dependabot.yml
@@ -0,0 +1,10 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "gomod"
4
+directory: "/"
5
+schedule:
6
+interval: "daily"
7
+ - package-ecosystem: "github-actions"
8
9
10
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
+name: make
+on:
+push:
+branches:
+ - main
+pull_request:
+jobs:
+build:
+name: test
+runs-on: ubuntu-latest
11
+steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-go@v3
14
+with:
15
+go-version: '1.19'
16
+ - run: wget https://github.com/tinygo-org/tinygo/releases/download/v0.26.0/tinygo_0.26.0_amd64.deb
17
+ - run: sudo dpkg -i tinygo_0.26.0_amd64.deb
18
+ - run: make
0 commit comments