Update dependency requests to v2.32.0 [SECURITY] #180
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: Integration tests | |
on: | |
- push | |
jobs: | |
Integration-Test-Python: | |
name: Integration Tests for Python | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: [36, 37, 38, 39] | |
steps: | |
- name: Install python prerequisites | |
run: "sudo pip3 install docker-compose" | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Perform integration tests for python version ${{ matrix.python_version }} | |
run: "cd ${{ github.workspace }} && docker-compose run --rm integration_tests_py${{ matrix.python_version }}" |