Merge branch 'develop' into feature/python-37

This commit is contained in:
ikelos
2022-12-06 23:50:49 +00:00
committed by GitHub
37 changed files with 589 additions and 135 deletions
+8 -6
View File
@@ -3,14 +3,16 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.7"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |