We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa73822 commit 1dfec09Copy full SHA for 1dfec09
1 file changed
.github/workflows/ci.yml
@@ -45,6 +45,17 @@ jobs:
45
with:
46
fetch-depth: 0
47
token: ${{ secrets.ATTICUS_PAT }}
48
+ - name: Set up Python
49
+ uses: actions/setup-python@v5
50
+ with:
51
+ python-version: '3.11'
52
+ - name: Install dependencies
53
+ run: |
54
+ python -m pip install --upgrade pip
55
+ pip install poetry
56
+ poetry install
57
+ - name: Pull latest changes
58
+ run: git pull origin main
59
- name: Python Semantic Release
60
uses: python-semantic-release/python-semantic-release@master
61
0 commit comments