Merge pull request #90 from captain5050/main #190
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
# This workflow will setup Python, run create_perf_json.py, and archive | |
# perf JSON files. | |
name: Create perf json | |
on: | |
push: | |
pull_request: | |
schedule: | |
# Tuesdays at 9AM PST | |
- cron: '0 16 * * 2' | |
permissions: | |
contents: read | |
jobs: | |
create-perf-json: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout perfmon | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Create perf json files | |
working-directory: ./scripts | |
run: python create_perf_json.py -v | |
- name: Archive perf json files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: perf-json | |
path: scripts/perf | |
retention-days: 10 | |
if-no-files-found: error |