Skip to content

Merge pull request #20 from vladhss/feature/get-application-by-name #32

Merge pull request #20 from vladhss/feature/get-application-by-name

Merge pull request #20 from vladhss/feature/get-application-by-name #32

Workflow file for this run

name: Go build
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: make test