Changed the product to the new one provided by Mend.io. #76
This file contains hidden or 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: Test the setup action | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/test-setup.yml | |
- setup/** | |
jobs: | |
setup-mend-cli: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Mend CLI | |
uses: ./setup | |
- name: Check if Mend CLI is on the PATH | |
run: | | |
if ! command -v mend &> /dev/null | |
then | |
echo "Mend CLI could not be found on the PATH" | |
exit 1 | |
fi | |