Skip to content

Commit

Permalink
workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
koloiyolo committed Dec 26, 2024
1 parent f504ab5 commit a1707ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 53 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/test.yml

This file was deleted.

20 changes: 5 additions & 15 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,17 @@ jobs:
release-build:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build pytest
python -m pip install .
python-version: "3.11"

- name: Build release distributions
run: |
python -m pytest sklearn_minisom.py
# NOTE: put your own distribution build steps here.
python -m pip install build
python -m build
- name: Upload distributions
Expand Down Expand Up @@ -77,4 +67,4 @@ jobs:
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/
packages-dir: dist/

0 comments on commit a1707ed

Please sign in to comment.