Skip to content

Make agent run directory configurable #180

Make agent run directory configurable

Make agent run directory configurable #180

Workflow file for this run

name: Build and test workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-rmap:
name: Build rmap
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: cli
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.24.1
- name: Get dependencies
run: make get-deps
- name: Build
run: make rmap
- name: Test
run: make tests
build-reconmapd:
name: Build reconmapd
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: agent
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.24.1
- name: Get dependencies
run: make get-deps
- name: Build
run: make reconmapd
- name: Test
run: make tests