Fixing incomplete state update issue in the step function of STORM environemnt #70
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: Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
max-parallel: 15 | |
matrix: | |
# os: [ubuntu-latest, macos-latest, windows-latest, macos-13-xlarge] | |
# For Apple Silicon: https://github.com/actions/runner-images/issues/8439 | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.9'] | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install -e '.[dev]' | |
- name: Run pytest | |
run: pytest tests |