Skip to content

chore(deps): bump github.com/Eyevinn/mp4ff from 0.39.0 to 0.40.1 #7

chore(deps): bump github.com/Eyevinn/mp4ff from 0.39.0 to 0.40.1

chore(deps): bump github.com/Eyevinn/mp4ff from 0.39.0 to 0.40.1 #7

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches: [ master ]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/*.yml'
permissions:
contents: read
pull-requests: read
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Golang env
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false # conflict with golangci-lint cache
- name: lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Golang env
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- name: Unit Test
run: go test -v -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}