Skip to content

chore: workflow

chore: workflow #7

Workflow file for this run

name: Go CI
on:
push:
paths:
- aggregator/**
- .github/workflows/test.yaml
defaults:
run:
working-directory: aggregator
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.21.0
- name: Install dependencies
run: go mod download
- name: Run kc tests
run: |
cd keycloak
go test -v
- name: Run session tests
run: |
cd model
go test -v