Add files via upload #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI and CMake Checks | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
container: | |
image: karlkorv/beamformer:latest | |
options: --user root | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ensure dependencies are installed | |
run: | | |
apt-get update | |
apt-get install -y cmake | |
- name: Run cmake in the Docker image | |
run: | | |
cmake -S . -B /build | |
cmake --build /build |