Skip to content

chore: update mus-stream to v0.10.2 #18

chore: update mus-stream to v0.10.2

chore: update mus-stream to v0.10.2 #18

Workflow file for this run

name: Run tests and upload coverage
on: [push]
permissions: {}
env:
ACT: false
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: '1.24'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -coverprofile=coverage.txt $(go list ./... | grep -v "test")
- name: Upload results to Codecov
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
if: ${{ !env.ACT }}
with:
token: ${{ secrets.CODECOV_TOKEN }}