Merge pull request #308 from ngosang/feature/actions

Update Python version in GitHub Actions
This commit is contained in:
Jérémy Benoist
2022-11-02 09:56:41 +01:00
committed by GitHub

View File

@ -31,7 +31,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: 3.5 python-version: 3.11
- name: "Build image" - name: "Build image"
run: docker-compose -f tests/docker-compose.${{ matrix.database }}.yml build run: docker-compose -f tests/docker-compose.${{ matrix.database }}.yml build
@ -40,9 +40,7 @@ jobs:
run: docker-compose -f tests/docker-compose.${{ matrix.database }}.yml up -d run: docker-compose -f tests/docker-compose.${{ matrix.database }}.yml up -d
- name: "Install dependencies" - name: "Install dependencies"
run: | run: pip install pytest requests
pip install pytest
pip install requests
- name: "Check running instance" - name: "Check running instance"
run: docker ps run: docker ps