Skip to content

Commit

Permalink
.github/workflows/test.yml: use PyICU==2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Apr 17, 2024
1 parent ce70511 commit 75b107c
Showing 1 changed file with 10 additions and 29 deletions.
39 changes: 10 additions & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,13 @@ on:
- cron: "33 1 * * 3"

jobs:
ubuntu-py310:
name: Ubuntu with Python 3.10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: cd and ls
run: |
cd ${{ github.workspace }}
ls -l
- name: Install dependencies
run: |
python -m pip install \
PyICU==2.11 \
beautifulsoup4 \
biplist html5lib \
python-idzip \
lxml \
marisa-trie \
mistune
- name: Run tests
run: bash ./scripts/test.sh

ubuntu:
name: Ubuntu

strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

runs-on: ubuntu-latest
steps:
Expand All @@ -56,7 +29,15 @@ jobs:
cd ${{ github.workspace }}
ls -l
- name: Install dependencies
run: bash ./scripts/test-deps.sh
run: |
python -m pip install \
PyICU==2.11 \
beautifulsoup4 \
biplist html5lib \
python-idzip \
lxml \
marisa-trie \
mistune
- name: Run tests
run: bash ./scripts/test.sh

Expand Down

0 comments on commit 75b107c

Please sign in to comment.