feat: adds agent config
command that returns the agent configuration
#2356
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: Lints | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
repository_dispatch: | |
types: [ok-to-test] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Go Version | |
shell: bash | |
run: | | |
set -euo pipefail | |
echo "GO_VER=$(cat .tool-versions | grep 'golang ' | cut -d' ' -f2)" >> $GITHUB_ENV | |
- name: Set Node Version | |
shell: bash | |
run: | | |
set -euo pipefail | |
echo "NODE_VER=$(cat .tool-versions | grep nodejs | cut -d' ' -f2)" >> $GITHUB_ENV | |
- name: Install asdf & tools | |
uses: asdf-vm/actions/install@v3 | |
- name: Add asdf to PATH | |
shell: bash | |
run: | | |
set -euo pipefail | |
echo "~/.asdf/shims" >> $GITHUB_PATH | |
- name: Go Tidy | |
shell: bash | |
run: | | |
set -euo pipefail | |
go mod tidy | |
- name: Run pre-commit | |
shell: bash | |
run: | | |
set -euo pipefail | |
pre-commit run --show-diff-on-failure --color=always --all-files |