Skip to content

Chore: (deps): Bump github.com/99designs/gqlgen from 0.17.60 to 0.17.61 #262

Chore: (deps): Bump github.com/99designs/gqlgen from 0.17.60 to 0.17.61

Chore: (deps): Bump github.com/99designs/gqlgen from 0.17.60 to 0.17.61 #262

Workflow file for this run

name: Unit-Test
on:
push:
branches:
- main
workflow_dispatch: { }
pull_request:
branches:
- main
jobs:
unit-tests:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Check out code
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Install ginkgo
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- name: Run Make test
run: make test
- name: Publish coverage # Pass the `coverage.out` output to this action
uses: codecov/[email protected]
with:
file: profile.cov
token: ${{ secrets.CODECOV_TOKEN }}