Skip to content

fix: previous commit did not include the 'new' files; fix: gitignore … #2

fix: previous commit did not include the 'new' files; fix: gitignore …

fix: previous commit did not include the 'new' files; fix: gitignore … #2

Workflow file for this run

name: Build Distributed Network Monitor
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Install dependencies
run: go mod download
- name: Build project
run: make build
- name: Run tests
run: make test