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 3100440 commit 717c5bbCopy full SHA for 717c5bb
.github/workflows/Tests.yaml
@@ -21,7 +21,7 @@ jobs:
21
python-version: ${{ matrix.python-version }}
22
23
- name: Install test dependencies
24
- run: python -m pip install --no-cache-dir --quiet mypy coverage build
+ run: python -m pip install --no-cache-dir mypy coverage build
25
26
- name: Run MyPy
27
run: python -m mypy --cache-dir=/dev/null -p lambda_calculus
@@ -39,3 +39,11 @@ jobs:
39
uses: codecov/codecov-action@v3
40
with:
41
flags: ${{ runner.os }}
42
+ verbose: true
43
+
44
+ - name: Publish package
45
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
46
+ uses: pypa/gh-action-pypi-publish@release/v1
47
+ with:
48
+ password: ${{ secrets.PYPI_API_TOKEN }}
49
0 commit comments