Skip to content

build(deps): bump github.com/gotd/td from 0.110.1 to 0.116.0 #1457

build(deps): bump github.com/gotd/td from 0.110.1 to 0.116.0

build(deps): bump github.com/gotd/td from 0.110.1 to 0.116.0 #1457

Workflow file for this run

name: Run Go Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.22'
- name: Install golangci-lint
run: sudo snap install golangci-lint --classic
- name: Code formatting and linting
run: make ci-lint
- name: Run tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}