Skip to content

Typed binary operators #29

Typed binary operators

Typed binary operators #29

Workflow file for this run

name: Shaderpulse tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v1
with:
cmake-version: '3.25'
- name: Configure CMake
run: cmake -B build -DENABLE_CODEGEN=OFF -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --config Release
- name: Run tests
run: ctest --test-dir build/test --output-on-failure