Skip to content

Add GitHub Actions Workflows + Dependabot configuration #2

Add GitHub Actions Workflows + Dependabot configuration

Add GitHub Actions Workflows + Dependabot configuration #2

Workflow file for this run

name: Build project
on: [ push, pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Test
run: make test