Skip to content

Commit

Permalink
Add README.md, LICENSE, and Github Action files.
Browse files Browse the repository at this point in the history
  • Loading branch information
thekevinday committed May 25, 2024
1 parent 05e440a commit 92904f0
Show file tree
Hide file tree
Showing 3 changed files with 779 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Production - Run Tests

on:
push:
branches: [ github ]

workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

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

- 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
Loading

0 comments on commit 92904f0

Please sign in to comment.