code/fleaf: allow server-side energy metrics collection #9
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: Run python-tests | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ["code/**"] | |
| pull_request: | |
| branches: [main] | |
| paths: ["code/**"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
| env: | |
| working-directory: ./code | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| for component in "fleaf" "fleafapi" "flessim"; do | |
| if [ -f "$component/requirements.txt" ]; then pip install -r "$component/requirements.txt"; fi | |
| if [ -f "$component/optional_requirements.txt" ]; then pip install -r "$component/optional_requirements.txt"; fi | |
| done | |
| working-directory: ${{env.working-directory}} | |
| - name: Test with unittest | |
| run: | | |
| python -m unittest discover -t . -s tests | |
| working-directory: ${{env.working-directory}} |