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 a8425c6 commit 2f21eefCopy full SHA for 2f21eef
2 files changed
.github/workflows/build.yml
.github/workflows/selftest.yml .github/workflows/ci.yml.github/workflows/selftest.yml renamed to .github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: Selftest
+name: MicroSui lib GitHub Actions CI
2
3
on:
4
push:
@@ -9,6 +9,22 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v3
16
17
+ - name: Install build tools
18
+ run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
19
20
+ - name: Run make
21
+ run: make
22
23
+ - name: Confirm success
24
+ run: echo "Makefile executed successfully"
25
26
+ selftest:
27
+ runs-on: ubuntu-latest
28
defaults:
29
run:
30
working-directory: examples/core_examples/benchmark
0 commit comments