feat: added CLI documentation to a markdown file #23
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: PR CI - EtL | |
on: | |
pull_request: | |
paths: | |
- 'EtL/**' | |
- '.github/workflows/pr__EtL_ci.yaml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
with: | |
version: 3.x | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache Go modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('EtL/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
working-directory: EtL | |
- name: Run CI checks | |
working-directory: EtL | |
run: task go:ci |