Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

chore(deps): update docker.io/library/golang docker tag to v1.21.3 (#52) #115

chore(deps): update docker.io/library/golang docker tag to v1.21.3 (#52)

chore(deps): update docker.io/library/golang docker tag to v1.21.3 (#52) #115

Workflow file for this run

# This workflow run tests.
# It is supposed to be run on each push to main branch, as well as for each.
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
permissions:
contents: read
jobs:
tests:
name: Run tests and upload coverage report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: false
- run: |
go test -race -covermode=atomic -coverprofile=coverage.out
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}