Skip to content

adding the orchestrator #25

adding the orchestrator

adding the orchestrator #25

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Go 1.21.x
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
cache-dependency-path: ${{ github.workspace }}/src/go.sum
- name: Install dependencies
working-directory: ${{ github.workspace }}/src
run: |
go get .
- name: Run tests
working-directory: ${{ github.workspace }}/src
run: go test -v ./...
- name: Build
working-directory: ${{ github.workspace }}/src
run: go build -v ./...