Skip to content

Commit

Permalink
Added catlin linting in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Senjuti256 authored and vdemeester committed Nov 28, 2023
1 parent ff6c37f commit afdf463
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,19 @@ jobs:
with:
pipeline_version: ${{ matrix.pipeline-version }}

# Install Catlin linting tool
- name: Install Catlin linting tool
run: |
git clone https://github.com/tektoncd/catlin
cd catlin
make
sudo cp bin/catlin /usr/local/bin
catlin --help
# run Catlin linting
- name: Run Catlin linting
run: make catlin

# running end-to-end test target
- name: test-e2e
run: make test-e2e
run: make test-e2e

0 comments on commit afdf463

Please sign in to comment.