Skip to content

Commit

Permalink
expand test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Dec 13, 2024
1 parent 78c5a89 commit d7f2698
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,32 @@ on:
pull_request:

jobs:
# tests:
# name: Unit tests
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: true
# matrix:
# os: [ubuntu-latest]
# python-version: ['3.9', '3.10', '3.11', '3.12']
# airflow-version: ['<2.10', '<2.11']
tests:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: ['3.9', '3.10'] #, '3.11', '3.12']
airflow-version: ['<2.10', '<2.11']

# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install Python dependencies
# run: |
# python -m pip install --upgrade pip setuptools wheel
# python -m pip install pytest
# python -m pip install "apache-airflow${{ matrix.airflow-version }}"
# - name: Run the test
# run: pytest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install pytest
python -m pip install "apache-airflow${{ matrix.airflow-version }}"
- name: Run the test
run: pytest

coverage:
name: Test coverage
Expand Down

0 comments on commit d7f2698

Please sign in to comment.