Skip to content

Bump github.com/cloudflare/circl from 1.3.6 to 1.3.7 in /src/memo-api #326

Bump github.com/cloudflare/circl from 1.3.6 to 1.3.7 in /src/memo-api

Bump github.com/cloudflare/circl from 1.3.6 to 1.3.7 in /src/memo-api #326

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: [1.21]
test-tags: ['', nomsgpack]
include:
- os: ubuntu-latest
go-build: ~/.cache/go-build
- os: macos-latest
go-build: ~/Library/Caches/go-build
name: ${{ matrix.os }} @ Go ${{ matrix.go }} ${{ matrix.test-tags }}
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
TESTTAGS: ${{ matrix.test-tags }}
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- uses: actions/cache@v3
with:
path: |
${{ matrix.go-build }}
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Tests
run: cd ./src &&
go test ./date-api/... -coverprofile=date-coverage.txt &&
go test ./memo-api/... -coverprofile=memo-coverage.txt &&
go test ./finance-api/... -coverprofile=finance-coverage.txt &&
go test ./user-api/... -coverprofile=user-coverage.txt &&
go test ./common/... -coverprofile=common-coverage.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: ${{ matrix.os }},go-${{ matrix.go }},${{ matrix.test-tags }}