feat: support recommended token auth method for Pinpoint channels (#… #828
This file contains 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: release | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
pull_request: | |
jobs: | |
deploy_tests: | |
runs-on: ubuntu-latest | |
env: | |
HAMLET_ENGINE: shared_testing | |
HAMLET_ENGINE_CONFIG: ./ | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install | |
run: | | |
pip install hamlet | |
- name: Run Tests | |
run: | | |
hamlet -i mock -p shared -p sharedtest -f default deploy test-deployments -p '--junitxml=junit.xml' -o 'hamlet_tests/' | |
package: | |
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags') }} | |
uses: hamlet-io/.github/.github/workflows/[email protected] | |
secrets: inherit |