File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed
src/main/python/ttconv/filters Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -4,24 +4,29 @@ on: [push, pull_request]
44
55jobs :
66 run :
7+ name : " Test"
8+ strategy :
9+ matrix :
10+ python_version : ["3.7", "3.14"]
711 runs-on : ubuntu-22.04
812 if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
913 steps :
1014
11- - uses : actions/setup-python@v4
15+ - uses : actions/setup-python@v6
1216 with :
13- python-version : ' 3.7 '
17+ python-version : ${{ matrix.python_version }}
1418
1519 - name : Initialize pip environment
1620 run : python -m pip install pipenv
1721
1822 - name : Checkout repo
19- uses : actions/checkout@v2
23+ uses : actions/checkout@v5
2024 with :
2125 submodules : true
2226
2327 - name : Install python environment
24- run : pipenv install --dev
28+ run : |
29+ pipenv install --dev --skip-lock --python ${{ matrix.python_version }}
2530
2631 - name : Run CI
2732 env :
Original file line number Diff line number Diff line change 3030class ISDFilter :
3131 """Abstract base class for filters"""
3232
33- def process (self , isd : ISD ):
33+ def process (self , isd : ISD ): # pragma: no cover
3434 """Process the specified ISD and returns it."""
3535 raise NotImplementedError
You can’t perform that action at this time.
0 commit comments