Skip to content

removed docker pull

removed docker pull #2

Workflow file for this run

name: CI with install
on:
pull_request:
branches:
- develop
- main
jobs:
testing:
runs-on: ubuntu-latest
container:
image: continuumio/miniconda3
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: install dependencies
run: |
conda install -c conda-forge mamba
mamba install -c cadquery -c conda-forge moab gmsh python-gmsh cadquery=master -y
- name: install package with tests
run: |
pip install .
- name: Run tests
run: |
pytest tests