Skip to content

Commit

Permalink
Github: Add test production 0.6 action.
Browse files Browse the repository at this point in the history
This is intended to be used on the `github-0.6` branch.
  • Loading branch information
thekevinday committed May 25, 2024
1 parent 05e440a commit de4f916
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test-0.6.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Production - 0.6 - Run Tests

on:
push:
branches: [ github-0.6 ]

workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: 'github-0.6'

- name: Add Dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y libcap-dev libcmocka-dev
- name: Run Tests Using GCC
run: |
cd $GITHUB_WORKSPACE
bash build/scripts/test.sh -p
- name: Run Tests Using CLang
run: |
cd $GITHUB_WORKSPACE
bash build/scripts/test.sh -p -c clang

0 comments on commit de4f916

Please sign in to comment.