change instructions to install fluidfoam in dev mode #103
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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| # You can use PyPy versions in python-version. | |
| # For example, pypy-2.7 and pypy-3.8 | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| outputs: | |
| version_changed: ${{ steps.check_file_changed.outputs.files_changed }} | |
| steps: | |
| - run: pip install -U pip pipenv coverage build | |
| - run: pip install -U numpy scipy matplotlib | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - run: set -o pipefail | |
| - name: Build and install fluidfoam | |
| run: | | |
| cd ${{ github.workspace }} && python -m build && pip install dist/fluidfoam*.whl --user | |
| - name: Test fluidfoam | |
| run: make tests | |
| - name: Test fluidfoam coverage | |
| run: make tests_coverage |