Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/release-channels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:

- name: Install dependencies
run: |
brew install zsh exiftool jq yamllint
sudo apt-get update
sudo apt-get install -y zsh exiftool jq python3-pip
pip3 install yamllint

- name: Run tests
run: |
Expand All @@ -48,7 +50,9 @@ jobs:

- name: Install dependencies
run: |
brew install zsh exiftool jq yamllint
sudo apt-get update
sudo apt-get install -y zsh exiftool jq python3-pip
pip3 install yamllint

- name: Run tests
run: |
Expand All @@ -75,7 +79,9 @@ jobs:

- name: Install dependencies
run: |
brew install zsh exiftool jq yamllint
sudo apt-get update
sudo apt-get install -y zsh exiftool jq python3-pip
pip3 install yamllint

- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
- name: "Install dependencies"
run: |
sudo apt-get update
sudo apt-get install -y zsh
sudo apt-get install -y zsh exiftool jq

- name: "Make test scripts executable"
run: |
Expand Down
2 changes: 2 additions & 0 deletions docs/git-flow/TEST_BRANCH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Git-flow test branch for issue #20
# Test commit to verify CI/CD fix
3 changes: 2 additions & 1 deletion scripts/testing/run-tests.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -294,4 +294,5 @@ function main() {
}

# Run main function with all arguments
main "$@"
main "$@" # Test commit to trigger CI/CD
# Test commit to trigger CI/CD with fixed dependencies
Loading