Skip to content

refactor: wrap channel secrets in linebot #60

refactor: wrap channel secrets in linebot

refactor: wrap channel secrets in linebot #60

Workflow file for this run

name: bot-ci
on:
push:
paths:
- "bot/**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup
uses: actions/setup-go@v5
- name: static check
run: cd bot && make ci-lint
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup
uses: actions/setup-go@v5
- name: test
run: cd bot && make test
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup
uses: actions/setup-go@v5
- name: build
run: cd bot && make build