Sort memory query to make sure datapoints for plots are in order #11
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: Create memory profiling graphs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install plotter | |
| run: | | |
| pip3 install . | |
| - name: Make plots | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| memprof_plotter | |
| - name: Upload plots | |
| if: ${{ !cancelled() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: memprof_plots | |
| path: memprof_plots |