Commit eb85518 1 parent 21b1a5d commit eb85518 Copy full SHA for eb85518
File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ jobs:
23
23
steps :
24
24
- name : Checkout Repository
25
25
uses : actions/checkout@v4
26
- - name : Set up Python 3.11
26
+ - name : Set up Python 3.12
27
27
id : setup-python
28
28
uses : actions/setup-python@v4
29
29
with :
30
- python-version : ' 3.11 '
30
+ python-version : ' 3.12 '
31
31
- name : Set up Poetry
32
32
uses : Gr1N/setup-poetry@v8
33
33
- name : Cache Poetry
Original file line number Diff line number Diff line change @@ -40,12 +40,16 @@ jobs:
40
40
- name : Install Poetry Dependencies
41
41
if : steps.cache-poetry.outputs.cache-hit != 'true'
42
42
run : |
43
- poetry install --with dev
43
+ poetry install
44
+
45
+ - name : Install Pyright and Ruff
46
+ run : |
47
+ pip install --upgrade pyright ruff
44
48
45
49
- name : Run Pyright
46
50
run : |
47
- poetry run pyright bot
51
+ pyright bot
48
52
49
53
- name : Run Ruff
50
54
run : |
51
- poetry run ruff bot
55
+ ruff bot
Original file line number Diff line number Diff line change 23
23
- name : Release New Version
24
24
uses : ncipollo/release-action@v1
25
25
with :
26
- bodyFile : " changelog.md "
26
+ body : " https://github.com/transprogrammer/rodhaj/compare/${{ steps.tag_version.outputs.tag }}...${{ steps.tag_version.outputs.new_tag }} "
27
27
token : ${{ secrets.PAT_TOKEN }}
28
28
tag : ${{ steps.tag_version.outputs.new_tag }}
29
29
name : ${{ steps.tag_version.outputs.new_tag }}
You can’t perform that action at this time.
0 commit comments