Merge pull request #3 from m-dupont/fix/average #5
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 the examples code for the git lesson | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.13.1 | |
| - name: Install dependencies | |
| run: pip install -vv pytest | |
| - name: Run test | |
| run: pytest -v -s --color=yes test.py | |