Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pyansys/pydpf-actions from 2.2 to 2.3 #196

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v3

- name: "Build Package"
uses: pyansys/pydpf-actions/build_package@v2.2
uses: pyansys/pydpf-actions/build_package@v2.3
with:
python-version: ${{ matrix.python-version }}
ANSYS_VERSION: ${{env.ANSYS_VERSION}}
Expand All @@ -59,12 +59,12 @@ jobs:
wheelhouse: true

- name: "Prepare Testing Environment"
uses: pyansys/pydpf-actions/prepare_tests@v2.2
uses: pyansys/pydpf-actions/prepare_tests@v2.3
with:
DEBUG: true

- name: "Test Docstrings"
uses: pyansys/pydpf-actions/test_docstrings@v2.2
uses: pyansys/pydpf-actions/test_docstrings@v2.3
with:
MODULE: ${{env.MODULE}}
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
Expand All @@ -77,7 +77,7 @@ jobs:
pytest $DEBUG --cov=ansys.dpf.${{env.MODULE}} --cov-report=xml --cov-report=html --cov-append --log-level=ERROR --junitxml=junit/test-results.xml --reruns 2 .

- name: "Kill all servers"
uses: pyansys/pydpf-actions/kill-dpf-servers@v2.2
uses: pyansys/pydpf-actions/kill-dpf-servers@v2.3
if: always()

- name: "Upload Test Results"
Expand All @@ -104,7 +104,7 @@ jobs:
- uses: actions/checkout@v3

- name: "Build Package"
uses: pyansys/pydpf-actions/build_package@v2.2
uses: pyansys/pydpf-actions/build_package@v2.3
with:
python-version: ${{ matrix.python-version }}
ANSYS_VERSION: ${{env.ANSYS_VERSION}}
Expand All @@ -122,7 +122,7 @@ jobs:
if: matrix.ANSYS_VERSION == '221'

- name: "Prepare Testing Environment"
uses: pyansys/pydpf-actions/prepare_tests@v2.2
uses: pyansys/pydpf-actions/prepare_tests@v2.3
with:
DEBUG: true

Expand All @@ -133,7 +133,7 @@ jobs:
pytest $DEBUG --cov=ansys.dpf.${{env.MODULE}} --cov-report=xml --cov-report=html --cov-append --log-level=ERROR --junitxml=junit/test-results.xml --reruns 2 .

- name: "Kill all servers"
uses: pyansys/pydpf-actions/kill-dpf-servers@v2.2
uses: pyansys/pydpf-actions/kill-dpf-servers@v2.3
if: always()

- name: "Upload Test Results"
Expand All @@ -154,7 +154,7 @@ jobs:
- uses: actions/checkout@v3

- name: "Build Documentation"
uses: pyansys/pydpf-actions/build_doc@v2.2
uses: pyansys/pydpf-actions/build_doc@v2.3
with:
python-version: "3.8"
ANSYS_VERSION: ${{env.ANSYS_VERSION}}
Expand Down