feat: uses containerised core in tests #2298
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: "Lint/Format" | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
lint-format: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
py_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.py_version }} | |
- name: Create virtual environment and install dependencies | |
run: | | |
python3 -m venv venv | |
source venv/bin/activate | |
make dev-install && rm -rf src | |
- name: Run checks | |
# New steps require sourcing the venv again | |
run: | | |
source venv/bin/activate | |
make lint | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# TODO: Add CDI to matrix | |
# TODO: Update docker to use correct image from CDI core tags | |
py_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.py_version }} | |
- name: Create virtual environment and install dependencies | |
run: | | |
python3 -m venv venv | |
source venv/bin/activate | |
make dev-install && rm -rf src | |
- name: Start core container | |
run: docker compose up -d; ls | |
- name: Run tests | |
run: | | |
source venv/bin/activate | |
make test |