Skip to content

[Python] Bump python to 3.9 (#62) #88

[Python] Bump python to 3.9 (#62)

[Python] Bump python to 3.9 (#62) #88

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