File tree Expand file tree Collapse file tree 4 files changed +34
-3
lines changed Expand file tree Collapse file tree 4 files changed +34
-3
lines changed Original file line number Diff line number Diff line change 1+ name : CD
2+
3+ on :
4+ pull_request :
5+ branches : [ main ]
6+
7+ workflow_dispatch :
8+
9+ jobs :
10+ executa_black :
11+ runs-on : ubuntu-latest
12+ steps :
13+
14+ - name : Realiza o checkout
15+ uses : actions/checkout@v2
16+
17+ - name : Set up Python
18+ uses : actions/setup-python@v2
19+ with :
20+ python-version : ' 3.10'
21+
22+ - name : Instala Poetry
23+ uses : Gr1N/setup-poetry@v7
24+
25+ - name : Instala dependências
26+ run : poetry install
27+
28+ - name : Build and publish to pypi
29+ 30+ with :
31+ pypi_token : ${{ secrets.TOKEN_PYPI_PYFLUNT }}
Original file line number Diff line number Diff line change 11"""Version Software."""
2- __version__ = "0.1.1 "
2+ __version__ = "0.2.0 "
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " Flunt"
3- version = " 0.1.1 "
3+ version = " 0.2.0 "
44description = " Python implementation of Domain Notification Pattern based in Flunt (.NET) developed by @andrebaltieri"
55authors = [
" Emerson Delatorre <[email protected] >" ]
66
Original file line number Diff line number Diff line change 22
33
44def test_version ():
5- assert __version__ == '0.1.1 '
5+ assert __version__ == '0.2.0 '
You can’t perform that action at this time.
0 commit comments