Merge branch 'main' of github.com:CadQuery/cq-cli into multi-file #1
Workflow file for this run
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: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Install and Test | |
run: | | |
conda create -y -n freecad -c conda-forge python=3.11 freecad=0.21.2 | |
conda init bash | |
source /usr/share/miniconda/bin/activate | |
conda activate freecad | |
python -m pip install --upgrade pip | |
pip install -e . | |
pip install -e .[dev] | |
python -m pytest -v tests/test_freecad.py |