Make menu foreground style configurable through skins #7
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: K9s Lint | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
golangci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4.2.2 | |
- name: Install Go | |
uses: actions/setup-go@v5.1.0 | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: go.sum | |
- name: Lint | |
uses: golangci/golangci-lint-action@v6.1.1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-check |