fix cmake install header files (keep subdirs) (#159) #168
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
name: CI Additional | |
jobs: | |
check-links: | |
name: Check links | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@master | |
- name: Markdown link check | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
mypy: | |
name: Mypy | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment-python-dev.yml | |
cache-environment: true | |
- name: Build and install Fastscapelib Python | |
run: | | |
python -m pip install . -v --no-build-isolation | |
- name: Run mypy | |
run: | | |
python -m mypy . --install-types --non-interactive |