Skip to content

Refactor configuration management by merging Core.ArkConfig and Core.… #347

Refactor configuration management by merging Core.ArkConfig and Core.…

Refactor configuration management by merging Core.ArkConfig and Core.… #347

Workflow file for this run

name: CI PyCompiler_ARK
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install ruff black
- run: ruff check .
- run: black --check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -r requirements.txt
- run: pytest -q
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: python pycompiler_ark.py doctor --json
- run: python pycompiler_ark.py engine list --json
- run: python pycompiler_ark.py workspace apply . --strict --json