Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

chore(deps): bump gorm.io/gorm from 1.23.10 to 1.25.3 #539

chore(deps): bump gorm.io/gorm from 1.23.10 to 1.25.3

chore(deps): bump gorm.io/gorm from 1.23.10 to 1.25.3 #539

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Generate coverage report
run: |
go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
name: codecov-umbrella-${{ matrix.os }}-${{ matrix.go-version }}