set the token and expiry time #707
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: CI Lint Check | |
on: [pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
go: [ '1.21' ] | |
steps: | |
- name: Checkout workspace | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Install necessary tools | |
run: make tools | |
- name: Run unit tests | |
run: make unit-test | |
- name: Build the code | |
run: make build | |
- name: Validate lint | |
run: make lint |