Merge branch 'Auto-Mech:dev' into master #20
This file contains hidden or 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: test | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| # Repository | |
| - name: Checkout the code | |
| uses: actions/checkout@v4 | |
| # Environment | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v6 | |
| # Test | |
| - name: Test | |
| run: | | |
| uv run pytest -n auto -v automol | |
| uv run pytest -v autochem | |
| uv run pytest -v autoreact |