diff --git a/.github/workflows/python310.yaml b/.github/workflows/python310.yaml new file mode 100644 index 0000000..9f8a8db --- /dev/null +++ b/.github/workflows/python310.yaml @@ -0,0 +1,35 @@ +name: Unit Tests + +on: + pull_request: + types: + - opened + - reopened + - ready_for_review + - synchronize + push: + branches: + - master + +jobs: + test: + name: Python Version Gauntlet + strategy: + fail-fast: false + matrix: + python-version: '3.10' + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install -r requirements-dev.txt + - name: Run Unit Tests + run: | + pytest diff --git a/.github/workflows/python311.yaml b/.github/workflows/python311.yaml new file mode 100644 index 0000000..bb59a57 --- /dev/null +++ b/.github/workflows/python311.yaml @@ -0,0 +1,35 @@ +name: Unit Tests + +on: + pull_request: + types: + - opened + - reopened + - ready_for_review + - synchronize + push: + branches: + - master + +jobs: + test: + name: Python Version Gauntlet + strategy: + fail-fast: false + matrix: + python-version: '3.11' + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install -r requirements-dev.txt + - name: Run Unit Tests + run: | + pytest diff --git a/.github/workflows/python312.yaml b/.github/workflows/python312.yaml new file mode 100644 index 0000000..a41bbd8 --- /dev/null +++ b/.github/workflows/python312.yaml @@ -0,0 +1,35 @@ +name: Unit Tests + +on: + pull_request: + types: + - opened + - reopened + - ready_for_review + - synchronize + push: + branches: + - master + +jobs: + test: + name: Python Version Gauntlet + strategy: + fail-fast: false + matrix: + python-version: '3.12' + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install -r requirements-dev.txt + - name: Run Unit Tests + run: | + pytest diff --git a/.github/workflows/python37.yaml b/.github/workflows/python37.yaml new file mode 100644 index 0000000..835a329 --- /dev/null +++ b/.github/workflows/python37.yaml @@ -0,0 +1,35 @@ +name: Unit Tests + +on: + pull_request: + types: + - opened + - reopened + - ready_for_review + - synchronize + push: + branches: + - master + +jobs: + test: + name: Python Version Gauntlet + strategy: + fail-fast: false + matrix: + python-version: 3.7 + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install -r requirements-dev.txt + - name: Run Unit Tests + run: | + pytest diff --git a/.github/workflows/python38.yaml b/.github/workflows/python38.yaml new file mode 100644 index 0000000..bab11f4 --- /dev/null +++ b/.github/workflows/python38.yaml @@ -0,0 +1,35 @@ +name: Unit Tests + +on: + pull_request: + types: + - opened + - reopened + - ready_for_review + - synchronize + push: + branches: + - master + +jobs: + test: + name: Python Version Gauntlet + strategy: + fail-fast: false + matrix: + python-version: 3.8 + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install -r requirements-dev.txt + - name: Run Unit Tests + run: | + pytest diff --git a/.github/workflows/python39.yaml b/.github/workflows/python39.yaml new file mode 100644 index 0000000..338f9e3 --- /dev/null +++ b/.github/workflows/python39.yaml @@ -0,0 +1,35 @@ +name: Unit Tests + +on: + pull_request: + types: + - opened + - reopened + - ready_for_review + - synchronize + push: + branches: + - master + +jobs: + test: + name: Python Version Gauntlet + strategy: + fail-fast: false + matrix: + python-version: 3.9 + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install -r requirements-dev.txt + - name: Run Unit Tests + run: | + pytest