File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 13
13
- uses : actions/checkout@v4
14
14
- uses : actions/setup-python@v5
15
15
with :
16
- python-version : 3.12
16
+ cache : pip
17
+ cache-dependency-path : |
18
+ dev-requirements.txt
19
+ fluent.syntax/setup.py
20
+ fluent.runtime/setup.py
17
21
- run : python -m pip install -r dev-requirements.txt
18
22
- run : python -m pip install ./fluent.syntax ./fluent.runtime
19
23
- run : python -m flake8
@@ -28,10 +32,17 @@ jobs:
28
32
- uses : actions/setup-python@v5
29
33
with :
30
34
python-version : ${{ matrix.python-version }}
35
+ cache : pip
36
+ cache-dependency-path : |
37
+ fluent.syntax/setup.py
38
+ fluent.runtime/setup.py
31
39
- run : python -m pip install ./fluent.syntax ./fluent.runtime
32
40
- run : python -m unittest discover -s fluent.syntax
33
41
- run : python -m unittest discover -s fluent.runtime
34
- baseline :
42
+
43
+ # Test compatibility with the oldest Python version we claim to support,
44
+ # and for fluent.runtime's compatibility with a range of fluent.syntax versions.
45
+ compatibility :
35
46
runs-on : ubuntu-20.04 # https://github.com/actions/setup-python/issues/544
36
47
strategy :
37
48
matrix :
You can’t perform that action at this time.
0 commit comments