We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47066b4 commit 487a2f8Copy full SHA for 487a2f8
.github/workflows/python-package.yml
@@ -43,12 +43,20 @@ jobs:
43
pytest tests/integration
44
45
deploy:
46
+ strategy:
47
+ matrix:
48
+ python-version: [3.7]
49
+
50
needs: ["build"]
51
runs-on: ubuntu-latest
52
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
53
54
steps:
55
- uses: actions/checkout@v2
56
+ - name: Set up Python ${{ matrix.python-version }}
57
+ uses: actions/setup-python@v2
58
+ with:
59
+ python-version: ${{ matrix.python-version }}
60
- name: install semantic-release
61
run: |
62
pip install python-semantic-release
0 commit comments