Skip to content

Add configuration for blocklist and update log import logic to respec… #235

Add configuration for blocklist and update log import logic to respec…

Add configuration for blocklist and update log import logic to respec… #235

Workflow file for this run

name: Unit-Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-blog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run blog tests
working-directory: ./blog
run: |
go mod tidy
go test ./...
test-framework:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run framework tests
working-directory: ./framework
run: |
go mod tidy
go test ./...
test-gateway:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run gateway tests
working-directory: ./gateway
run: |
go mod tidy
go test ./...