Skip to content

chore(deps): bump github.com/gotd/td from 0.104.0 to 0.105.0 #868

chore(deps): bump github.com/gotd/td from 0.104.0 to 0.105.0

chore(deps): bump github.com/gotd/td from 0.104.0 to 0.105.0 #868

Workflow file for this run

name: Lint
on:
push:
tags:
- v*
branches:
- main
pull_request:
workflow_dispatch:
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Lint
uses: golangci/[email protected]
with:
version: latest
args: --timeout 5m
# Check if there are any dirty changes after go mod tidy
check-mod:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/[email protected]
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
key: check-mod-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
check-mod-${{ runner.os }}-go-
- name: Download dependencies
run: go mod download && go mod tidy
- name: Check git diff
run: git diff --exit-code
# Check if there are any dirty changes after go generate
check-generate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Get Go environment
id: go-env
run: |
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/[email protected]
with:
path: |
${{ steps.go-env.outputs.cache }}
${{ steps.go-env.outputs.modcache }}
key: check-generate-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
check-generate-${{ runner.os }}-go-
- name: Download dependencies
run: go mod download && go mod tidy
- name: Generate files
run: go generate ./...
- name: Check git diff
run: git diff --exit-code