Skip to content

feat(worker): enhance worker configuration and add tests #7

feat(worker): enhance worker configuration and add tests

feat(worker): enhance worker configuration and add tests #7

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...
# - name: Generate coverage report
# run: go tool cover -html=coverage.out -o coverage.html
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./coverage.html