Skip to content

Bump black from 22.10.0 to 24.3.0 in /requirements #77

Bump black from 22.10.0 to 24.3.0 in /requirements

Bump black from 22.10.0 to 24.3.0 in /requirements #77

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@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: make install-ci
- name: Run lint
run: make lint
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: make install-ci
- name: Run unit test
run: make test-unit
integration_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: make install-ci
- name: Run integration test
run: make test-integ