Skip to content

chore(deps): pin alpine docker tag to 82d1e9d - autoclosed #296

chore(deps): pin alpine docker tag to 82d1e9d - autoclosed

chore(deps): pin alpine docker tag to 82d1e9d - autoclosed #296

Workflow file for this run

# name of the action
name: test
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
test:
runs-on: ubuntu-latest
container:
image: golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da
steps:
- name: clone
uses: actions/checkout@v3
- name: test
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out