Skip to content

Commit

Permalink
.github/workflows/test.yml: move python 3.10 to a new job, use PyICU=…
Browse files Browse the repository at this point in the history
…=2.11
  • Loading branch information
ilius committed Apr 17, 2024
1 parent b654523 commit 37e52d8
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,40 @@ 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.10", "3.11", "3.12"]
python-version: ["3.11", "3.12"]

runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 37e52d8

Please sign in to comment.