summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test-unit-platform.yml
blob: a22cc673ea91ff7fe81bc9a831d1edebdc26fa15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: 🚉 Unit test Platform

on:
  pull_request:
    branches:
      - develop
    paths:
      - 'openbb_platform/**'

concurrency:
    group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
    cancel-in-progress: true

jobs:
  unit_tests:
    runs-on: ubuntu-latest
    strategy:
        fail-fast: false

        matrix:
          python_version:
            ["3.9", "3.10", "3.11", "3.12"]
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
        with:
          ref: ${{ github.event.pull_request.head.sha }}
      - name: Install Python ${{ matrix.python_version }}
        uses: actions/setup-python@v5
        with:
            python-version: ${{ matrix.python_version }}
            allow-prereleases: true
            cache: "pip"

      - name: Cache pip packages
        uses: actions/cache@v4
        with:
          path: ~/.cache/pip
          key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('openbb_platform/poetry.lock') }}
          restore-keys: |
            ${{ runner.os }}-pip-

      - name: Run tests
        run: |
          pip install nox
          nox -f .github/scripts/noxfile.py -s unit_test_platform --python ${{ matrix.python_version }}