Skip to content

Changed triangle vertex precision from float to double in multiple su… #21

Changed triangle vertex precision from float to double in multiple su…

Changed triangle vertex precision from float to double in multiple su… #21

Workflow file for this run

name: Build
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
build_type: [Debug, Release]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build_type }}