Skip to content

fix: Only encrypt primary key attrs #12

fix: Only encrypt primary key attrs

fix: Only encrypt primary key attrs #12

Workflow file for this run

name: CI 🏗
on:
push:
branches:
- main
tags:
- "v*.*.*"
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint_test:
name: Lint & test code.
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Lint Go code
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Vet
run: go vet ./...
- name: Test
run: go test -race -cover ./...