Skip to content

build(deps): bump actions/checkout from 3 to 4 #356

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #356

Workflow file for this run

name: Codecov
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
defaults:
run:
working-directory: main
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: main
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "main/go.mod"
check-latest: true
cache: true
cache-dependency-path: "main/go.sum"
- name: Set up MongoDB
uses: supercharge/mongodb-github-action@v1.10.0
with:
mongodb-version: "4.4"
- name: Run coverage
run: make test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
working-directory: main