Merge branch 'internal/develop' into feature/default-headers #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build and Test | |
on: | |
push: | |
branches: [ feature/* ] | |
pull_request: | |
branches: [ feature/* ] | |
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.22' | |
cache: true | |
- name: Add Go Bin to PATH | |
run: echo "$GOPATH/bin" >> $GITHUB_PATH | |
- name: Install Dependencies | |
run: go mod download | |
- name: Build using Makefile | |
run: make build OS=linux ARCH=amd64 | |
- name: Test using Makefile | |
run: make test |