update ci.yml #7
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: CI for CWLApp | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run-tests: | |
strategy: | |
fail-fast: false # if true, then if one task fails all fails, but we need which version is failing | |
matrix: | |
os: [macos-latest] | |
python-version: | |
- "3.12" | |
- "pypy-3.8" | |
- "pypy-3.9" | |
name: Test | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code # bring code into github runner | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: python3 -m pip install pytest pyyaml parsl prettyprint schema | |
- name: Run tests | |
run: pytest |