Skip to content

Update main.yml python back #29

Update main.yml python back

Update main.yml python back #29

Workflow file for this run

name: Macro Vector Auto Regression App (CI/CD)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
include:
- os: macos-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Lint with Ruff
run: |
poetry run ruff .
- name: Run tests with pytest
run: |
poetry run pytest
- name: Check code coverage
run: |
poetry run coverage run -m pytest
poetry run coverage report -m --fail-under=90