Skip to content

Adapt java to codespaces and vscode #182

Adapt java to codespaces and vscode

Adapt java to codespaces and vscode #182

Workflow file for this run

name: CMake exercise
on:
- push
- pull_request
jobs:
cmake-exercise:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: configure and build
working-directory: topics/build_systems/code
run: |
rm CMakeLists.txt
mv CMakeLists_solution.txt CMakeLists.txt
mkdir build
cmake -S . -B build
cmake --build build
- name: run tests
working-directory: topics/build_systems/code
run: |
cmake --build build --target test