Skip to content

Commit

Permalink
[ci] Add action to test install from pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Oct 9, 2024
1 parent 02803b7 commit b9d29ef
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: pip-install

# Controls when the workflow will run
on:
# Manual trigger from the Actions tab only
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install
run: pip install PyStemmer

0 comments on commit b9d29ef

Please sign in to comment.