polars version upgrade #129
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: Health Check tests | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- python/** | |
- reports/*.qmd | |
- .github/workflows/** | |
pull_request: | |
paths: | |
- python/** | |
- reports/*.qmd | |
jobs: | |
HealthCheck-Test: | |
runs-on: ubuntu-latest | |
name: Test Health Check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: pip | |
- name: Install dependencies | |
working-directory: python | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install pytest | |
pip install papermill | |
pip install XlsxWriter | |
pip install ipython | |
pip install ipykernel | |
pip install itables | |
pip install jinja2 | |
ipython kernel install --name "python3" --user | |
sudo apt-get install -y pandoc | |
- name: Install pdstools | |
run: pip install . | |
- name: "Install quarto" | |
run: | | |
curl -s https://api.github.com/repos/quarto-dev/quarto-cli/releases/latest | | |
grep "browser_download_url.*deb" | | |
cut -d '"' -f 4 | | |
wget -i - | |
sudo dpkg -i quarto*amd64.deb | |
- name: Run Health Check | |
run: pytest python/tests/test_healthcheck.py |