-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc2b16e
commit ce5c4d6
Showing
2 changed files
with
15 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,31 +8,26 @@ on: | |
branches: | ||
- main | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
jobs: | ||
build: | ||
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')" | ||
install: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest] | ||
# os: [windows-latest] | ||
python-version: ['3.9.10'] | ||
os: [ubuntu-latest, windows-latest] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- uses: conda-incubator/[email protected] | ||
- name: Set up Conda | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
channels: conda-forge | ||
python-version: ${{ matrix.python-version }} | ||
activate-environment: compas_wood_3_9_10 | ||
python-version: 3.9.10 | ||
auto-activate-base: false | ||
|
||
- uses: compas-dev/[email protected] | ||
with: | ||
test_lint: false | ||
test_compas: true | ||
- name: Install dependencies | ||
run: | | ||
conda install compas -c conda-forge | ||
pip install -r requirements.txt | ||
pip install -e . |
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