Build #872
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
schedule: | |
- cron: '30 21 * * *' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
pip3 install -e . | |
pip3 install coverage mypy pycodestyle pylint types-python-dateutil \ | |
types-requests types-setuptools types-simplejson | |
- name: Test | |
run: | | |
./test.sh | |
env: | |
HMRC_CLIENT_ID: ${{ secrets.HMRC_CLIENT_ID }} | |
HMRC_CLIENT_SECRET: ${{ secrets.HMRC_CLIENT_SECRET }} | |
HMRC_SERVER_TOKEN: ${{ secrets.HMRC_SERVER_TOKEN }} | |
- name: Distribution | |
run: | | |
python3 setup.py sdist bdist_wheel | |
- name: Coverage report | |
uses: codecov/codecov-action@v3 | |
- name: Publish to PyPI | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |