Skip to content

Commit

Permalink
Added a github action to build and intsall. Test on more python versi…
Browse files Browse the repository at this point in the history
…ons. Test the devel branch
  • Loading branch information
openvmp committed Jan 13, 2024
1 parent 7f7b5f3 commit 603127d
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 9 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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 build venv
# python -m pip install -r partcad/requirements.txt
# python -m pip install -r partcad-cli/requirements.txt
- name: Prepare environments
run: |
mkdir .venv
python -m venv .venv/build
python -m venv .venv/build-cli
python -m venv .venv/install
- name: Test building and packaging
run: |
(source .venv/build/bin/activate && cd partcad && python -m build)
(source .venv/build-cli/bin/activate && cd partcad-cli && python -m build)
- name: Test installation
run: |
(source .venv/install/bin/activate && python -m pip install partcad/dist/partcad-[0-9].[0-9]*.[0-9]*-py3-none-any.whl)
(source .venv/install/bin/activate && python -m pip install partcad-cli/dist/partcad_cli-[0-9].[0-9]*.[0-9]*-py3-none-any.whl)
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application

on:
push:
branches: ["main"]
branches: ["main", "devel"]
pull_request:
branches: ["main"]
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: "3.10"
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
id: cache
with:
Expand All @@ -33,9 +34,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
pip install ./partcad
pip install ./partcad-cli
#if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -r partcad/requirements.txt
pip install -r partcad-cli/requirements.txt
- name: Test with pytest
run: |
pytest

0 comments on commit 603127d

Please sign in to comment.