File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 48
48
required : false
49
49
type : string
50
50
default : .
51
+ delete-poetry-lock :
52
+ description : Delete poetry lock file in order to test against newer versions
53
+ required : false
54
+ type : boolean
55
+ default : false
51
56
52
57
53
58
jobs :
75
80
# ----------------------------------------------
76
81
- uses : actions/checkout@v4
77
82
83
+ # ----------------------------------------------
84
+ # delete poetry.lock file in order to run tests against newer versions
85
+ # ----------------------------------------------
86
+ - name : Delete poetry.lock file
87
+ if : ${{ inputs.delete-poetry-lock }}
88
+ run : |
89
+ rm ./poetry.lock
90
+ echo "::Warning tile=poetry.lock::Poetry.lock is deleted in this workflow run. You might have to do this too when reproducing build errors."
91
+
78
92
# ----------------------------------------------
79
93
# install Python
80
94
# ----------------------------------------------
You can’t perform that action at this time.
0 commit comments