File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1- name : MetaCall Distributable Linux
1+ name : " MetaCall Distributable Linux Release "
22
33on :
44 workflow_dispatch :
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments