Skip to content

Added a github action to build and intsall. Test on more python versi… #1

Added a github action to build and intsall. Test on more python versi…

Added a github action to build and intsall. Test on more python versi… #1

Workflow file for this run

name: Python application
on:
push:
branches: ["main", "devel"]
pull_request:
branches: ["main", "devel"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
id: cache
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.*') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r partcad/requirements.txt
pip install -r partcad-cli/requirements.txt
- name: Test with pytest
run: |
pytest