update github actions yaml #16
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: Run Performance Tests | |
on: [push] | |
jobs: | |
runscript: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GetCode | |
uses: actions/checkout@v3 | |
- name: SetupPython | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
- name: Run Performance Tests | |
run: | | |
pwd | |
ls -l | |
whoami | |
python --version | |
echo $HOME | |
ls performance | |
ls performance/get_gridded_data | |
python performance/get_gridded_data/time_1pt_1wy.py |