Skip to content

Merge pull request #283 from akrherz/240923 #209

Merge pull request #283 from akrherz/240923

Merge pull request #283 from akrherz/240923 #209

Workflow file for this run

name: pydep CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
defaults:
run:
# Ensures environment gets sourced right
shell: bash -e -l {0}
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
PYTHON_VERSION: ["3.9", "3.11", "3.12"]
env:
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
steps:
- uses: actions/checkout@v4
- name: Add /etc/hosts entries
run: |
cat .github/workflows/etchosts.txt | sudo tee -a /etc/hosts
# setup conda-forge with micromamba
- name: Setup Python
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
condarc: |
channels:
- conda-forge
- defaults
create-args: >-
python=${{ env.PYTHON_VERSION }}
environment-name: prod
cache-environment: true
- name: Install Python Dependencies via pip
run: python -m pip install -r pip_requirements.txt
- name: Setup paths
run: sh .github/setuppaths.sh
- name: Setup data
run: sh .github/setupdata.sh
- name: Setup Postgres
run: |
git clone --depth 1 https://github.com/akrherz/iem-database.git database
git clone --depth 1 https://github.com/akrherz/ci_tooling.git .ci_tooling
. .ci_tooling/postgres.sh
cd database; sh bootstrap.sh
python schema_manager.py
- name: Setup Memcached
run: |
. .ci_tooling/memcached.sh
- name: Build and test
run: |
python -m pip install . --upgrade --no-deps
python -m pytest --cov=pydep tests
python -m coverage xml
- name: Upload codecov
if: ${{ env.PYTHON_VERSION == '3.12' }}
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml