Skip to content

fix: self-heal user identity hash drift #1

fix: self-heal user identity hash drift

fix: self-heal user identity hash drift #1

Workflow file for this run

name: Run Tests on Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
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.26"
- name: Install Dependencies
run: |
go mod download
- name: Run Tests
run: |
make test
env:
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}