From 5c10d2342a28b4afa07fb97e71727dd631760711 Mon Sep 17 00:00:00 2001 From: Licini Date: Thu, 9 Nov 2023 14:29:45 +0100 Subject: [PATCH 1/2] update workflow to v3 --- .github/workflows/build.yml | 6 +++--- .github/workflows/docs.yml | 2 +- tasks.py | 5 ----- 3 files changed, 4 insertions(+), 9 deletions(-) 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/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5a683392b..3f02f6b51 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,7 +14,7 @@ jobs: docs: runs-on: windows-latest steps: - - uses: compas-dev/compas-actions.docs@v2 + - uses: compas-dev/compas-actions.docs@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} use_conda: true 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)", - # }, } ) From 2ad4684b221dd91ec463571dd34bc86277776431 Mon Sep 17 00:00:00 2001 From: Licini Date: Thu, 9 Nov 2023 14:34:47 +0100 Subject: [PATCH 2/2] changelog --- .github/workflows/docs.yml | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3f02f6b51..5a683392b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,7 +14,7 @@ jobs: docs: runs-on: windows-latest steps: - - uses: compas-dev/compas-actions.docs@v3 + - uses: compas-dev/compas-actions.docs@v2 with: github_token: ${{ secrets.GITHUB_TOKEN }} use_conda: true 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