Skip to content

Commit

Permalink
Merge pull request #1 from georgeyanev/readmsgext
Browse files Browse the repository at this point in the history
Add ReadMsgExt
  • Loading branch information
georgeyanev authored Jan 14, 2025
2 parents b403faf + c5312a7 commit b74d408
Show file tree
Hide file tree
Showing 12 changed files with 653 additions and 96 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Go Coverage

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"

jobs:
coverage:
runs-on: ubuntu-latest

strategy:
matrix:
go-version: ['1.23']

steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v3

- name: Install dependencies
run: go mod tidy

- name: Measure coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
verbose: true
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Go Tests
on:
push:
branches:
- "*"
- "master"
pull_request:
branches:
- "*"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Go Tests](https://github.com/georgeyanev/go-sctp/actions/workflows/test.yml/badge.svg)](https://github.com/georgeyanev/go-sctp/actions/workflows/test.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/georgeyanev/go-sctp.svg)](https://pkg.go.dev/github.com/georgeyanev/go-sctp)
[![Fork me on GitHub](https://img.shields.io/badge/Fork%20me%20on-GitHub-blue?style=flat-square)](https://github.com/georgeyanev/go-sctp/fork)

**`go-sctp`** is a Golang package that provides an efficient interface for working
with the **Stream Control Transmission Protocol (SCTP)**.
Expand Down
64 changes: 0 additions & 64 deletions bindx_test.go

This file was deleted.

Loading

0 comments on commit b74d408

Please sign in to comment.