Skip to content

[Image] Add provision build args #94

[Image] Add provision build args

[Image] Add provision build args #94

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