Skip to content

feat(middleware): Add Cors middleware #8

feat(middleware): Add Cors middleware

feat(middleware): Add Cors middleware #8

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.3'
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...