Skip to content

Commit

Permalink
install
Browse files Browse the repository at this point in the history
ryanwi committed Sep 18, 2024

Verified

This commit was signed with the committer’s verified signature.
lucasmellos Lucas Mellos Carlos
1 parent d9ce421 commit 63f359a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/actions/test-ruby/action.yml
Original file line number Diff line number Diff line change
@@ -53,8 +53,20 @@ runs:
cache: 'pip'
- run: pip -V
shell: bash
- run: pip install -r requirements.txt
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
shell: bash
- run: pip -V
shell: bash

- name: Download NLTK data
run: |
python -m nltk.downloader -d /usr/local/share/nltk_data punkt punkt_tab
- name: Verify NLTK data installation
run: |
python -c "import nltk; nltk.data.path.append('/usr/local/share/nltk_data'); nltk.tokenize.word_tokenize('This is a test.')"
# - name: Additional Setup
# if: inputs.ADDITIONAL_SETUP != '[]'

0 comments on commit 63f359a

Please sign in to comment.