Skip to content

Commit

Permalink
Merge pull request #6 from SLM-Audio/syl/test-pipeline
Browse files Browse the repository at this point in the history
Add test runner to pipeline
  • Loading branch information
MeijisIrlnd authored Oct 2, 2024
2 parents 1fb68f9 + 5348a0c commit f5f6134
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/framework-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
push:
branches:
- main
jobs:
tests-windows:
runs-on: windows-latest
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: Configure and Build
uses: threeal/cmake-action@main
with:
options: "TESTS=ON"
build-args: "--target mostly-harmless-tests"
- name: Run tests
run: "./build/debug/mostly-harmless-tests.exe"

tests-macos:
runs-on: macos-latest
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: Configure and Build
uses: threeal/cmake-action@main
with:
options: "TESTS=ON"
build-args: "--target mostly-harmless-tests"
- name: Run tests
run: "./build/mostly-harmless-tests"

0 comments on commit f5f6134

Please sign in to comment.