Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ll repo
  • Loading branch information
kernelsam committed Nov 13, 2024
1 parent c6ba697 commit c09eb9a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ this action runs [pytest] on the Darwin/macOS platform to perform unit tests and
- Uses:
- [actions/checkout]
- [actions/setup-python]
- [senzing-factory/github-action-install-senzing-api]
- [senzing-factory/github-action-install-senzing-sdk]
- [pytest]
- [actions/upload-artifact]

Expand All @@ -149,7 +149,7 @@ this action runs [pytest] on the Linux platform to perform unit tests and code c
- Uses:
- [actions/checkout]
- [actions/setup-python]
- [senzing-factory/github-action-install-senzing-api]
- [senzing-factory/github-action-install-senzing-sdk]
- [pytest]
- [actions/upload-artifact]

Expand All @@ -162,7 +162,7 @@ this action runs [pytest] on the Windows platform to perform unit tests and code
- Uses:
- [actions/checkout]
- [actions/setup-python]
- [senzing-factory/github-action-install-senzing-api]
- [senzing-factory/github-action-install-senzing-sdk]
- [pytest]
- [actions/upload-artifact]

Expand Down Expand Up @@ -213,5 +213,5 @@ this action runs [pytest] on the Windows platform to perform unit tests and code
[senzing-factory/build-resources/.../lint-workflows.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/lint-workflows.yaml
[senzing-factory/build-resources/.../move-pr-to-done-dependabot.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/move-pr-to-done-dependabot.yaml
[senzing-factory/github-action-docker-buildx-build]: https://github.com/senzing-factory/github-action-docker-buildx-build
[senzing-factory/github-action-install-senzing-api]: https://github.com/senzing-factory/github-action-install-senzing-api
[senzing-factory/github-action-install-senzing-sdk]: https://github.com/senzing-factory/github-action-install-senzing-sdk
[super-linter]: https://github.com/super-linter/super-linter
10 changes: 5 additions & 5 deletions .github/workflows/pytest-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ permissions:

jobs:
pytest-darwin:
name: "pytest Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
name: "pytest Senzing: ${{ matrix.senzingsdk-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest]
# 3.9 is unsupported on the darwin runner
python-version: ["3.10", "3.11", "3.12"]
senzingapi-version: [staging-v4]
senzingsdk-version: [staging-v4]

steps:
- name: Checkout repository
Expand All @@ -47,10 +47,10 @@ jobs:
source ./venv/bin/activate
python -m pip install typing_extensions
- name: Install Senzing API
uses: senzing-factory/github-action-install-senzing-api@v4
- name: Install Senzing SDK
uses: senzing-factory/github-action-install-senzing-sdk@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}
senzingsdk-version: ${{ matrix.senzingsdk-version }}

- name: Copy /etc files
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pytest-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ permissions:

jobs:
pytest-linux:
name: "pytest Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
name: "pytest Senzing: ${{ matrix.senzingsdk-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
senzingapi-version: [staging-v4]
senzingsdk-version: [staging-v4]

steps:
- name: Checkout repository
Expand All @@ -45,10 +45,10 @@ jobs:
source ./venv/bin/activate
python -m pip install typing_extensions
- name: Install Senzing API
uses: senzing-factory/github-action-install-senzing-api@v4
- name: Install Senzing SDK
uses: senzing-factory/github-action-install-senzing-sdk@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}
senzingsdk-version: ${{ matrix.senzingsdk-version }}

- name: Copy /etc files
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pytest-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ permissions:

jobs:
pytest-windows:
name: "pytest Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
name: "pytest Senzing: ${{ matrix.senzingsdk-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
senzingapi-version: [staging-v4]
senzingsdk-version: [staging-v4]

steps:
- name: Checkout repository
Expand All @@ -44,10 +44,10 @@ jobs:
.\\venv\\Scripts\\activate
python -m pip install typing_extensions
- name: Install Senzing API
uses: senzing-factory/github-action-install-senzing-api@v4
- name: Install Senzing SDK
uses: senzing-factory/github-action-install-senzing-sdk@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}
senzingsdk-version: ${{ matrix.senzingsdk-version }}

- name: Add to "Path" environment variable
run: |
Expand Down

0 comments on commit c09eb9a

Please sign in to comment.