Bump get-func-name from 2.0.0 to 2.0.2 #148
This file contains 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, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
python: 3.7 | |
torch: 1.13.1+cpu | |
torchvision: 0.14.1+cpu | |
torch-source: https://download.pytorch.org/whl/torch_stable.html | |
- os: ubuntu-latest | |
python: 3.8 | |
torch: 1.13.1+cpu | |
torchvision: 0.14.1+cpu | |
torch-source: https://download.pytorch.org/whl/torch_stable.html | |
- os: ubuntu-latest | |
python: 3.9 | |
torch: 1.13.1+cpu | |
torchvision: 0.14.1+cpu | |
torch-source: https://download.pytorch.org/whl/torch_stable.html | |
- os: ubuntu-latest | |
python: "3.10" | |
torch: 1.13.1+cpu | |
torchvision: 0.14.1+cpu | |
torch-source: https://download.pytorch.org/whl/torch_stable.html | |
- os: macos-latest | |
python: 3.8 | |
torch: 1.13.1 | |
torchvision: 0.14.1 | |
torch-source: https://download.pytorch.org/whl/torch_stable.html | |
- os: windows-latest | |
python: 3.8 | |
torch: 1.13.1+cpu | |
torchvision: 0.14.1+cpu | |
torch-source: https://download.pytorch.org/whl/torch_stable.html | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Python version | |
run: | | |
python --version | |
- name: Install Python | |
run: | | |
python -m pip install --upgrade pip setuptools | |
python -m pip install torch==${{ matrix.torch }} torchvision==${{ matrix.torchvision }} -f ${{ matrix.torch-source }} | |
python -m pip install -e ".[test]" | |
- name: Install for MacOSX | |
if: matrix.os == 'macos-latest' | |
run: brew install libomp # required for onnxruntime | |
- run: npm ci # install from package-lock.json without modifying it | |
- run: npm run build | |
- name: Print environment | |
run: | | |
python -m pip freeze | |
python --version | |
python -c "import openpifpaf; print(openpifpaf.__version__)" | |
python -c "import openpifpafwebdemo; print(openpifpafwebdemo.__version__)" | |
- name: Lint Python | |
run: | | |
pylint openpifpafwebdemo --disable=fixme | |
- name: pycodestyle openpifpafwebdemo | |
run: | | |
python -m pycodestyle openpifpafwebdemo | |
- run: npm run lint | |
- run: npm run test |