diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66570cf66..b1f9a6c2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,9 +18,9 @@ jobs: python: ['3.8', '3.9', '3.10'] steps: - - uses: compas-dev/compas-actions.build@v2 + - uses: compas-dev/compas-actions.build@v3 with: - test_lint: true - test_compas: true + invoke_lint: true + check_import: true use_conda: true python: ${{ matrix.python }} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d0f632132..738045240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Renamed `BRep.occ_shape` to `native_brep` for compatibility with `RhinoBrep`. * Fixed the error when calling `BRep.frame`. * Fixed `AttributeError` when calling `BRep.loops`. +* Updated `compas-actions.build` workflow to v3. ### Changed diff --git a/tasks.py b/tasks.py index 3f63e8900..d1bbbc512 100644 --- a/tasks.py +++ b/tasks.py @@ -26,10 +26,5 @@ ns.configure( { "base_folder": os.path.dirname(__file__), - # "ghuser": { - # "source_dir": "src/compas_ghpython/components", - # "target_dir": "src/compas_ghpython/components/ghuser", - # "prefix": "(COMPAS)", - # }, } )