Skip to content

Bump gopkg.in/telebot.v4 from 4.0.0-beta.4 to 4.0.0-beta.5 #5

Bump gopkg.in/telebot.v4 from 4.0.0-beta.4 to 4.0.0-beta.5

Bump gopkg.in/telebot.v4 from 4.0.0-beta.4 to 4.0.0-beta.5 #5

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.23.x"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Install dependencies
run: go mod download
- name: Run tests
run: make cover
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.23.x"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: golangci/golangci-lint-action@v6
name: Install golangci-lint
with:
version: latest
- name: Lint
run: make lint