Early version of profiler harness #118
Workflow file for this run
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: Profiler | |
on: | |
pull_request: | |
jobs: | |
run_profiler: | |
name: Run Profiler | |
strategy: | |
matrix: | |
os: [single-cell-8c64g-runner] | |
python-version: ["3.11"] | |
runs-on: ${{matrix.os}} | |
permissions: # these permissions must be set for AWS auth to work! | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: us-west-2 | |
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
role-session-name: PushDockerImage | |
- name: Run all tests | |
run: | | |
./tools/perf_checker/perf_checker.sh |