Skip to content

Commit f37ff13

Browse files
committedJan 13, 2025
Merge branch 'main' of https://github.com/tulir/whatsmeow
2 parents 5c40e06 + 918c879 commit f37ff13

File tree

81 files changed

+15901
-19218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+15901
-19218
lines changed
 

‎.github/ISSUE_TEMPLATE/issue.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,10 @@ name: Open issue
33
about: For bug reports and feature requests directly related to whatsmeow
44

55
---
6+
7+
<!--
8+
Do not open issues for questions!
9+
Issues are only for bug reports and feature requests.
10+
11+
Questions belong in the Matrix room or on GitHub Discussions.
12+
-->

‎.github/workflows/go.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ name: Go
22

33
on: [push, pull_request]
44

5+
env:
6+
GOTOOLCHAIN: local
7+
58
jobs:
69
build:
710
runs-on: ubuntu-latest
811
strategy:
912
fail-fast: false
1013
matrix:
11-
go-version: ["1.21", "1.22"]
12-
name: Build ${{ matrix.go-version == '1.22' && '(latest)' || '(old)' }}
14+
go-version: ["1.22", "1.23"]
15+
name: Build ${{ matrix.go-version == '1.23' && '(latest)' || '(old)' }}
1316

1417
steps:
1518
- uses: actions/checkout@v4
@@ -30,8 +33,5 @@ jobs:
3033
go install golang.org/x/tools/cmd/goimports@latest
3134
export PATH="$HOME/go/bin:$PATH"
3235
33-
- name: Install pre-commit
34-
run: pip install pre-commit
35-
36-
- name: Lint
37-
run: pre-commit run -a
36+
- name: Run pre-commit
37+
uses: pre-commit/action@v3.0.1

0 commit comments

Comments
 (0)