Skip to content

Fix EntityOwner

Fix EntityOwner #600

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Run Tests
run: |-
go test -race -coverprofile=coverage.out -covermode=atomic -v ./...
cat coverage.out | grep -v "/enum.go" > coverage.txt
- name: Upload Coverage
run: |-
bash <(curl -s https://codecov.io/bash)