Skip to content

Commit

Permalink
Add devel test.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Nov 7, 2024
1 parent df4386e commit 6fcff14
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MetaCall Distributable Linux
name: "MetaCall Distributable Linux Release"

on:
workflow_dispatch:
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "MetaCall Distributable Linux Test"

# CI used for testing the development environment

on:
workflow_dispatch:
pull_request:
push:
branches:
- master

jobs:
test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Run Tests
run: |
make
if [ ! -f out/tarball.tar.gz ]; then
echo "Failed to generate the tarball"
exit 1
fi
- name: Clear
run: |
make clear
if [ -f out/tarball.tar.gz ]; then
echo "Failed clear the tarball"
exit 1
fi

0 comments on commit 6fcff14

Please sign in to comment.