Update to v1.1 zenodo id for example inference data (#28) #73
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: tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| cpu: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set environment variables | |
| run: | | |
| echo "CURRENT_WEEK=$(date +'%Y-%U')" >> $GITHUB_ENV | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.pythonLocation }} | |
| key: ${{ env.CURRENT_WEEK }}-${{ env.pythonLocation }}-${{ hashFiles('fme/requirements.txt') }}-${{ hashFiles('fme/dev-requirements.txt') }}-${{ hashFiles('constraints.txt') }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install uv | |
| uv pip install --system -c constraints.txt -e ./fme[dev] | |
| - name: Run pytest | |
| run: | | |
| make test | |
| cpu-very-fast: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set environment variables | |
| run: | | |
| echo "CURRENT_WEEK=$(date +'%Y-%U')" >> $GITHUB_ENV | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.pythonLocation }} | |
| key: ${{ env.CURRENT_WEEK }}-${{ env.pythonLocation }}-${{ hashFiles('fme/requirements.txt') }}-${{ hashFiles('fme/dev-requirements.txt') }}-${{ hashFiles('constraints.txt') }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install uv | |
| uv pip install --system -c constraints.txt -e ./fme[dev] | |
| - name: Run pytest | |
| run: | | |
| make test_very_fast |