File tree Expand file tree Collapse file tree 6 files changed +102
-33
lines changed
Expand file tree Collapse file tree 6 files changed +102
-33
lines changed Original file line number Diff line number Diff line change @@ -4,32 +4,32 @@ name: Lint
44
55on :
66 push :
7- branches : [ "main" ]
7+ branches : ["main"]
88 pull_request :
9- branches : [ "main" ]
9+ branches : ["main"]
1010
1111jobs :
1212 lint :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v3
16- - name : Set up Python 3.11
17- uses : actions/setup-python@v4
18- with :
19- python-version : ' 3.11 '
20- - name : Install just
21- run : |
22- sudo apt update
23- sudo snap install --edge --classic just
24- - name : Install dependencies
25- run : |
26- python -m pip install --upgrade pip
27- python -m pip install poetry
28- poetry install
15+ - uses : actions/checkout@v3
16+ - name : Set up Python 3.13
17+ uses : actions/setup-python@v4
18+ with :
19+ python-version : " 3.13 "
20+ - name : Install just
21+ run : |
22+ sudo apt update
23+ sudo snap install --edge --classic just
24+ - name : Install dependencies
25+ run : |
26+ python -m pip install --upgrade pip
27+ python -m pip install poetry
28+ poetry install
2929
30- - name : Lint
31- run : |
32- just lint
30+ - name : Lint
31+ run : |
32+ just lint
3333
3434 lint-commit :
3535 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ name: Security
44
55on :
66 push :
7- branches : [ "main" ]
7+ branches : ["main"]
88 pull_request :
9- branches : [ "main" ]
9+ branches : ["main"]
1010
1111jobs :
1212 osv-scanner :
3232 steps :
3333 - uses : actions/checkout@v3
3434 - name : Set up Python
35- uses : actions/setup-python@v3
35+ uses : actions/setup-python@v4
3636 with :
37- python-version : " 3.11 "
37+ python-version : " 3.13 "
3838 - name : Install dependencies
3939 run : |
4040 python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 2020 steps :
2121 - uses : actions/checkout@v3
2222 - name : Set up Python
23- uses : actions/setup-python@v3
23+ uses : actions/setup-python@v4
2424 with :
2525 python-version : ${{ matrix.python-version }}
2626 - name : Install just
Original file line number Diff line number Diff line change 22venv := " .venv"
33bin := venv + " /bin"
44python := bin + " /python"
5- python_version := " python3.12 "
5+ python_version := " python3.13 "
66target_dirs := " src tests"
77
88
You can’t perform that action at this time.
0 commit comments