Skip to content

Commit

Permalink
Merge pull request #22 from BlockResearchGroup/workflow
Browse files Browse the repository at this point in the history
update workflow
  • Loading branch information
Licini authored Jan 25, 2024
2 parents da66d43 + 3ed02e3 commit d945755
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ jobs:
- uses: compas-dev/compas-actions.build@v3
with:
invoke_lint: true
check_import: true
use_conda: true
invoke_test: true
python: ${{ matrix.python }}
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ on:

jobs:
docs:
runs-on: windows-latest
runs-on: ubuntu-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
doc_url: https://blockresearchgroup.github.io/compas_fd
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
os: [macos-latest, windows-latest, ubuntu-latest]
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
use_conda: true
invoke_lint: true
invoke_test: true
python: ${{ matrix.python }}

Publish:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Updated workflows.

### Removed


Expand Down
4 changes: 2 additions & 2 deletions src/compas_fd/install.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from compas.plugins import plugin


@plugin(category='install', tryfirst=True)
@plugin(category="install", tryfirst=True)
def installable_rhino_packages():
return ['compas_fd']
return ["compas_fd"]

0 comments on commit d945755

Please sign in to comment.