ODD Memory Usage Test #3
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: 'ODD Memory Usage Test' | |
on: | |
schedule: | |
- cron: '30 12 * * *' | |
workflow_dispatch: | |
jobs: | |
analyze-memory: | |
name: 'ODD Memory Usage Test' | |
runs-on: 'ubuntu-latest' | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout repository | |
uses: 'actions/checkout@v4' | |
- name: Run memory analysis | |
uses: ./.github/actions/odd-resource-analysis | |
with: | |
mixpanel-user: ${{ secrets.MIXPANEL_INGEST_USER }} | |
mixpanel-secret: ${{ secrets.MIXPANEL_INGEST_SECRET }} | |
mixpanel-project-id: ${{ secrets.OT_APP_MIXPANEL_ID }} | |
previous-version-count: '2' |