trace with api gateway #44
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: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
jobs: | |
apply-changes: | |
runs-on: ubuntu-latest | |
container: baselime/baselime:latest | |
env: | |
BASELIME_API_KEY: ${{ secrets.BASELIME_API_KEY }} | |
TELEMETRY_KEY_ENABLED: false | |
BASELIME_DOMAIN: baselime.cc | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Push the changes | |
run: baselime push -y --c $GITHUB_WORKSPACE/.baselime | |
- name: Print report | |
run: baselime report --c $GITHUB_WORKSPACE/.baselime |