Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

test

test #205

Workflow file for this run

name: Build agents
on:
push:
branches: [main, '*']
jobs:
testAgents:
uses: ./.github/workflows/run-tests.yml
# test:
# env:
# GOFLAGS: "-mod=mod"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: 1.21
# - name: Test
# working-directory: .
# run: |
# make test
buildAgents:
needs: testAgents
env:
GOFLAGS: "-mod=mod"
VERSION: ${{ github.ref_name }}
COMMIT_ID: ${{ github.sha }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Build discovery agent
working-directory: .
run: |
make build-discovery
- name: Build traceability agent
working-directory: .
run: |
make build-trace