Skip to content

gha(deps): bump the github-actions group with 2 updates #56

gha(deps): bump the github-actions group with 2 updates

gha(deps): bump the github-actions group with 2 updates #56

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- "**"
pull_request:
types: [opened, reopened]
jobs:
tests:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install Dependencies
run: go mod download
- name: Test
run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic -gcflags=-l