Skip to content

update action checkout version from v3 to v4 #2

update action checkout version from v3 to v4

update action checkout version from v3 to v4 #2

Workflow file for this run

name: Build
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure
run: cmake -B build .
- name: Build
working-directory: build
run: make
- name: Run Tests
working-directory: build
run: make test