Skip to content

Feat personal overrides support and other improvements #9

Feat personal overrides support and other improvements

Feat personal overrides support and other improvements #9

Workflow file for this run

name: Build and Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Run make
run: make
- name: Run tests
run: make test