@@ -4,26 +4,25 @@ on: [push]
44
55jobs :
66 build :
7-
87 runs-on : ubuntu-latest
98
109 steps :
11- - uses : actions/checkout@v1
12- - name : Set up Python 3.11
13- uses : actions/setup-python@v1
14- with :
15- python-version : 3.11
16- - name : Install dependencies
17- run : |
18- python -m pip install --upgrade pip
19- pip install -r lib/requirements.txt
20- - name : Lint with flake8
21- run : |
22- pip install flake8
23- # stop the build if there are Python syntax errors or undefined names
24- flake8 ./lib --count --select=E9,F63,F7,F82 --show-source --statistics
25- # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
26- flake8 ./lib --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
27- - name : Test with unittest
28- run : |
29- python3 -B lib/validate_vrt.py
10+ - uses : actions/checkout@v4
11+ - name : Set up Python 3.13
12+ uses : actions/setup-python@v5
13+ with :
14+ python-version : " 3.13 "
15+ - name : Install dependencies
16+ run : |
17+ python -m pip install --upgrade pip
18+ pip install -r lib/requirements.txt
19+ - name : Lint with flake8
20+ run : |
21+ pip install flake8
22+ # stop the build if there are Python syntax errors or undefined names
23+ flake8 ./lib --count --select=E9,F63,F7,F82 --show-source --statistics
24+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
25+ flake8 ./lib --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
26+ - name : Test with unittest
27+ run : |
28+ python3 -B lib/validate_vrt.py
0 commit comments