Skip to content

chore(deps): bump gorm.io/gorm from 1.25.11 to 1.25.12 in /examples #113

chore(deps): bump gorm.io/gorm from 1.25.11 to 1.25.12 in /examples

chore(deps): bump gorm.io/gorm from 1.25.11 to 1.25.12 in /examples #113

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
go-version: [1.21.x, 1.22.x, 1.23.x]
include:
- go-version: 1.23.x
upload-coverage: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
with:
go-version: ${{ matrix.go-version }}
- name: Build
shell: bash
run: make build
- name: Test and Coverage
shell: bash
env:
UPLOAD_COVERAGE: ${{ matrix.upload-coverage }}
COVERPROFILE: ./cover.out
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: make test