Skip to content

Commit

Permalink
✨ Added yq installation to GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jemrobinson committed May 21, 2024
1 parent c4ca9e1 commit 26fe396
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,10 @@ jobs:
ruby-version: 3.4
- name: Install ruby dependencies
run: gem install mustache
- name: Install yq
run: |
VERSION=v4.44.1
BINARY=yq_linux_amd64
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - | tar xz && sudo mv ${BINARY} /usr/bin/yq
- name: Run tests
run: bats tests

0 comments on commit 26fe396

Please sign in to comment.