File tree Expand file tree Collapse file tree 2 files changed +31
-52
lines changed
Expand file tree Collapse file tree 2 files changed +31
-52
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 38383939 with :
4040 token : ${{ secrets.CODECOV_TOKEN }}
41- files : ./coverage.xml
41+ files : ./coverage.xml
42+
43+ build :
44+ if : github.actor != 'actions[bot]'
45+ runs-on : ubuntu-latest
46+
47+ needs : test
48+
49+ steps :
50+ - name : Checkout code
51+ uses : actions/checkout@v2
52+ with :
53+ ref : ${{ github.head_ref }}
54+
55+
56+ - name : Set up Python
57+ uses : actions/setup-python@v2
58+ with :
59+ python-version : ' 3.9'
60+
61+ - name : Install Poetry
62+ run : |
63+ pip install --upgrade pip
64+ curl -sSL https://install.python-poetry.org | python3 -
65+ poetry config virtualenvs.create false
66+ poetry install
67+
68+ - name : Increment version
69+ run : |
70+ poetry version patch # params: patch, minor, major
71+
You can’t perform that action at this time.
0 commit comments