This commit is contained in:
Кобелев Андрей Андреевич
2023-02-01 12:08:20 +03:00
commit 1b497f2b9b
57 changed files with 10640 additions and 0 deletions

17
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Test
run: export TELEBOT_SECRET=${{ secrets.TELEBOT_SECRET }} && export CHAT_ID=${{ secrets.CHAT_ID }} && export USER_ID=${{ secrets.USER_ID }} && go test -v ./...