Rename compas_ifc_small.png to compas_ifc-small.png #31
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
name: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Build: | |
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest] | |
python: ['3.8', '3.9', '3.10'] | |
steps: | |
- uses: compas-dev/compas-actions.build@v3 | |
with: | |
invoke_lint: true | |
use_conda: true | |
python: ${{ matrix.python }} |