Skip to content

Commit

Permalink
added workflows to run tests in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhold committed Nov 16, 2023
1 parent 16fb309 commit e800a22
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: C++ Build and Test

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: Install C++ build tools and CMake
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
- name: Check out repository
uses: actions/checkout@v2

- name: Build and Test
run: |
mkdir build
cd build
cmake ..
cmake --build .
cd ..
python tools/test_runner.py build/src/laszlo

0 comments on commit e800a22

Please sign in to comment.