[FIX] token bucket fill (#9) #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Deploy to master' | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
push: | |
branches: | |
- 'master' | |
# Defining jobs | |
jobs: | |
# Lint job for Go code | |
lint: | |
name: Lint Go Code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # Checks out the code | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' # Sets up Go 1.22 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 # Uses golangci-lint version 1.54 |