Skip to content

Commit

Permalink
Add CI for Runtime Test (#53)
Browse files Browse the repository at this point in the history
* Add CI for Runtime Test

* Use container to run tests
  • Loading branch information
xuhdev authored Dec 12, 2024
1 parent b6034a9 commit 4171499
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/runtime.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Runtime tests

name: Runtime

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]

jobs:
test:
name: Runtime
runs-on: ubuntu-latest
container: python:3.13-bookworm

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install CMake
run: apt-get update && apt-get install -y cmake
- name: Install Dependencies
run: pip install -e .

- name: Test
run: cmake . && ctest -VV .

0 comments on commit 4171499

Please sign in to comment.