Skip to content

Commit 6fcff14

Browse files
committed
Add devel test.
1 parent df4386e commit 6fcff14

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: MetaCall Distributable Linux
1+
name: "MetaCall Distributable Linux Release"
22

33
on:
44
workflow_dispatch:

.github/workflows/test.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: "MetaCall Distributable Linux Test"
2+
3+
# CI used for testing the development environment
4+
5+
on:
6+
workflow_dispatch:
7+
pull_request:
8+
push:
9+
branches:
10+
- master
11+
12+
jobs:
13+
test:
14+
name: Test
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Check out the repo
19+
uses: actions/checkout@v4
20+
21+
- name: Run Tests
22+
run: |
23+
make
24+
if [ ! -f out/tarball.tar.gz ]; then
25+
echo "Failed to generate the tarball"
26+
exit 1
27+
fi
28+
29+
- name: Clear
30+
run: |
31+
make clear
32+
if [ -f out/tarball.tar.gz ]; then
33+
echo "Failed clear the tarball"
34+
exit 1
35+
fi

0 commit comments

Comments
 (0)