Bump actions/setup-python from 4 to 5 (#9) #21
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: GitHub CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
triplestore: | |
name: Quarkus Triplestore | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: LDP tests | |
run: | | |
docker-compose -f trellis-quarkus-triplestore-compose.yml up -d | |
python verify_running.py --baseurl http://localhost/ | |
python setup.py test -a "--baseurl=http://localhost/" | |
sh run_ldp_testsuite.sh | |
postgresql: | |
name: Quarkus PostgreSQL | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: LDP tests | |
run: | | |
docker-compose -f trellis-quarkus-postgresql-compose.yml up -d | |
python verify_running.py --baseurl http://localhost/ | |
python setup.py test -a "--baseurl=http://localhost/" | |
sh run_ldp_testsuite.sh | |