Skip to content

[WIP] Add mTLS and OAuth authentication to event REST API #378

[WIP] Add mTLS and OAuth authentication to event REST API

[WIP] Add mTLS and OAuth authentication to event REST API #378

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
golangci:
name: Linting
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23
- name: tidy
run: go mod tidy
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.64
args: --timeout 3m0s
unit-tests:
name: Unit Tests
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23
- name: tidy
run: go mod tidy
- name: Run Test Scripts
run: |
make gha