Skip to content

Fix pipeline and add more tests #5

Fix pipeline and add more tests

Fix pipeline and add more tests #5

Workflow file for this run

name: Run unit tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_compile_rest_application:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go mod tidy
- name: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o webhook adapters/rest/*.go
test_compile_docker_image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
run: make docker-build
running_all_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go mod tidy
- name: Test with the Go CLI
run: make test