Optimize API Changes #306
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: Correctness | |
on: | |
workflow_call: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main', 'dev/*'] | |
jobs: | |
correctness: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Run image | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.5.1 | |
- name: Create environment | |
run: poetry install | |
- name: Install pyciemss | |
run: poetry run poe install-pyciemss | |
- name: Pytest | |
run: poetry run pytest |