chore: bump Homebrew/actions/setup-homebrew, fixes #58 (#60) #285
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: Disable checkout test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**.md" | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| disable-checkout-test: | |
| name: Disable checkout test | |
| runs-on: ubuntu-latest | |
| env: | |
| ADD_ON: JanoPL/ddev-kibana | |
| ADD_ON_REF: v1.4.0 | |
| DDEV_VERSION: stable | |
| steps: | |
| - name: Clone current repository | |
| uses: actions/checkout@v6 | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: ${{ env.ADD_ON }} | |
| ref: ${{ env.ADD_ON_REF }} | |
| path: tested-addon | |
| submodules: "true" | |
| - name: Run add-on test | |
| uses: ./ | |
| with: | |
| ddev_version: ${{ env.DDEV_VERSION }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| addon_repository: ${{ env.ADD_ON }} | |
| addon_ref: ${{ env.ADD_ON_REF }} | |
| addon_path: tested-addon | |
| disable_checkout_action: true |