File tree 3 files changed +23
-3
lines changed
3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 68
68
export PATH=$HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin:$PATH
69
69
ls $HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin
70
70
tmux -V
71
- sudo apt install cowsay
72
71
poetry run py.test --cov=./ --cov-append --cov-report=xml
73
72
env :
74
73
COV_CORE_SOURCE : .
78
77
with :
79
78
token : ${{ secrets.CODECOV_TOKEN }}
80
79
80
+ release :
81
+ runs-on : ubuntu-latest
82
+ needs : build
83
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
84
+
85
+ strategy :
86
+ matrix :
87
+ python-version : ["3.10"]
88
+
89
+ steps :
90
+ - uses : actions/checkout@v3
91
+
92
+ - name : Install poetry
93
+ run : pipx install "poetry==1.1.15"
94
+
95
+ - name : Set up Python ${{ matrix.python-version }}
96
+ uses : actions/setup-python@v4
97
+ with :
98
+ python-version : ${{ matrix.python-version }}
99
+ cache : ' poetry'
100
+
81
101
- name : Build package
82
102
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
83
103
run : poetry build
Original file line number Diff line number Diff line change 1
- 3.10.6 3.9.13 3.8.13 3.7.12
1
+ 3.10.6 3.9.13 3.8.13 3.7.13
Original file line number Diff line number Diff line change 1
1
poetry 1.1.15
2
- python 3.10.6 3.9.13 3.8.13 3.7.12
2
+ python 3.10.6 3.9.13 3.8.13 3.7.13
You can’t perform that action at this time.
0 commit comments