Skip to content

use inner response types 1/1 #16

use inner response types 1/1

use inner response types 1/1 #16

Workflow file for this run

name: Build and Test
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Test Image
run: docker build -t client-go:latest -f ./dockerfile.test .
- name: Run Test Image
run: docker run --rm client-go:latest
- name: Send Telegram Notification
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{github.workflow}}
repository: ${{ github.repository }}
user: ${{ github.actor }}
commit: ${{ github.event.head_commit.message }}
link: https://github.com/${{ github.repository }}
link: https://github.com/${{ github.repository }}/commit/${{github.sha}}