Merge pull request #112 from roocs/prepare-release-0.10.0 #333
Workflow file for this run
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, pull_request ] | |
jobs: | |
build: | |
name: Conda Build with Python${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
sudo apt-get -y install pandoc | |
if: matrix.python-version == 3.9 | |
- name: Setup Conda (Micromamba) with Python${{ matrix.python-version }} | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
cache-downloads: true | |
cache-environment: true | |
environment-file: environment.yml | |
create-args: >- | |
conda | |
python=${{ matrix.python-version }} | |
- name: Conda and Mamba versions | |
run: | | |
conda --version | |
echo "micromamba: $(micromamba --version)" | |
- name: Install dependencies | |
run: | | |
python -m pip install --no-user --editable "." | |
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi | |
- name: Lint with flake8 | |
run: make lint | |
if: matrix.python-version == 3.9 | |
# - name: Check formatting with black | |
# run: black --check --target-version py39 daops tests | |
# if: matrix.python-version == 3.9 | |
- name: Test with pytest | |
run: | | |
python -m pytest -v tests | |
- name: Build docs 🏗️ | |
run: make docs | |
if: matrix.python-version == 3.9 |