Skip to content

build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #107

build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0

build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #107

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- '**.md'
pull_request_target:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install libgl1-mesa-dev xorg-dev
- name: test
run: |
go test ./... -race -coverprofile=coverage.txt.tmp -covermode=atomic
grep -v "_easyjson.go" coverage.txt.tmp > coverage.txt
- uses: codecov/codecov-action@v4
with:
file: coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}