Changes to the workflow to make it compatible with the latest version… #2
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: pytests | |
on: [push, pull_request] | |
jobs: | |
run_pytests: | |
runs-on: ubuntu-latest | |
name: Install pygw and run tests with pytests | |
strategy: | |
max-parallel: 1 | |
matrix: | |
python: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install (upgrade) python dependencies | |
run: | | |
pip install --upgrade pip | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: global-workflow | |
- name: Install pygw | |
run: | | |
cd $GITHUB_WORKSPACE/global-workflow/ush/python/pygw | |
pip install .[dev] | |
- name: Run pytests | |
run: | | |
cd $GITHUB_WORKSPACE/global-workflow/ush/python/pygw | |
pytest -v src/tests |