-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
bugSomething isn't workingSomething isn't working
Description
🔍 Before submitting the issue
- I have searched among the existing issues
- I am using a Python virtual environment
🐞 Description of the bug
smoke-tests:
name: "Build and Smoke tests"
runs-on: {{ '${{ matrix.os }}' }}
needs: [code-style]
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
{% set required_minor = cookiecutter.__requires_python[2:] | int %}
{%- set python_versions = [ ] -%}
{%- for minor in range(9, 13) -%}
{%- if minor >= required_minor -%}
{{ python_versions.append("3." + minor | string ) or ''}}
{%- endif -%}
{%- endfor -%}
python-version: {{ python_versions }}
steps:
- uses: ansys/actions/build-wheelhouse@v6
with:
library-name: {{ '${{ env.LIBRARY_NAME }}' }}
operating-system: {{ '${{ matrix.os }}' }}
python-version: {{ '${{ matrix.python-version }}' }}
tests:
name: "Tests"
runs-on: {{ '${{ matrix.os }}' }}
needs: [smoke-tests]
Job smoke-tests
only performs action build-wheelhouse
, so job should be renamed accordingly into build-wheelhouse
to avoid confusion. Then tests
updated with needs: [build-wheelhouse]
.
📝 Steps to reproduce
Create a new project with any template.
💻 Which operating system are you using?
Windows
🐍 Which Python version are you using?
3.10
📦 Installed packages
Does not matter.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working