TeamCity change in 'iMOD6 / Coupler / iMOD6_collector' project: runne… #717
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: Check Packages | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
cache-downloads: true | |
cache-environment: true | |
environment-file: ./environment.yml | |
- name: Install imod coupler | |
run: | | |
pip install -e . | |
- name: Build and check packages | |
run: | | |
python -m build | |
twine check --strict dist/* |