Skip to content

Working code on GPU | tests passing #340

Working code on GPU | tests passing

Working code on GPU | tests passing #340

Workflow file for this run

name: Build
on: [push]
jobs:
build-serial:
runs-on: ubuntu-latest
steps:
- name: Check GNU and Cmake versions
run: gcc --version && cmake --version
- name: Checkout repository
uses: actions/checkout@v1
- name: Get submodules
run: git submodule init
&& git submodule update
- name: Configure Serial build
run: cmake -S . -B build
- name: Build
run: cmake --build build