Merge pull request #152 from pepkit/dev #511
This file contains hidden or 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: Run pytests | |
| on: | |
| push: | |
| branches: [master, dev] | |
| pull_request: | |
| branches: [master, dev] | |
| jobs: | |
| pytest: | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.13"] | |
| os: [ubuntu-latest] # can't use macOS when using service containers or container jobs | |
| r: [release] | |
| runs-on: ${{ matrix.os }} | |
| services: | |
| postgres: | |
| image: postgres | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: pass8743hf9h23f87h437 | |
| POSTGRES_DB: pep-db | |
| POSTGRES_HOST: localhost | |
| ports: | |
| - 5432:5432 | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dev dependencies | |
| run: if [ -f requirements/requirements-dev.txt ]; then pip install -r requirements/requirements-dev.txt; fi | |
| - name: Install package | |
| run: python -m pip install . | |
| - name: Run pytest tests | |
| run: pytest tests -x -vv |