Skip to content

pip - Build and Integration Test #615

pip - Build and Integration Test

pip - Build and Integration Test #615

name: pip - Build and Integration Test
on:
schedule:
# Run every day at 20:00 UTC
- cron: '0 20 * * * '
jobs:
build-lint-test-coverage:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
defaults:
run:
shell: bash -l {0}
env:
OORB_DATA: /tmp/oorb/data
steps:
- name: Checkout git repo
uses: actions/checkout@v4
- name: Get git tags
run: git fetch --prune --unshallow --tags
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install Dependencies
run: |
pip install pip --upgrade
pip install ".[dev]"
- name: Integration Tests
run: pytest --benchmark-disable -k integration