Skip to content

handle regex based payloads #2

handle regex based payloads

handle regex based payloads #2

Workflow file for this run

name: Test GoLang Project
on:
push:
branches:
- main
- dev
pull_request:
branches:
- '*'
permissions:
contents: read
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: change cwd to project dir
run: cd ./src
- name: Install Dependencies
run: go mod download
- name: Build Project
run: make build
- name: Test with the Go CLI
run: make test