Skip to content

[Python] Support for 3.7 as well #89

[Python] Support for 3.7 as well

[Python] Support for 3.7 as well #89

Workflow file for this run

name: CI
on:
push:
branches:
- development
pull_request:
branches:
- development
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: make install
- name: Run lint
run: make lint
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: make install
- name: Run unit test
run: make test-unit
integration_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: make install
- name: Run integration test
run: make test-integ