Skip to content

Add string publisher (#6) #22

Add string publisher (#6)

Add string publisher (#6) #22

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
container:
image: ghcr.io/downercase/ecal-go:latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
cmake:
container:
image: ghcr.io/downercase/ecal-go-cpp:latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B build -G Ninja -Werror=dev -DCMAKE_COMPILE_WARNING_AS_ERROR=ON
- name: Build
run: cmake --build ./build