Skip to content

Commit

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

on:
push:
branches: [ github-development ]

workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

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

- name: Run Tests Using GCC
run: |
cd $GITHUB_WORKSPACE
bash build/scripts/test.sh -p github
- name: Run Tests Using CLang
run: |
cd $GITHUB_WORKSPACE
bash build/scripts/test.sh -p -c clang github

0 comments on commit fe34ad7

Please sign in to comment.