MM Parser: Add late payment to first bill #3007
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: Chellow | |
on: | |
push: | |
branches: [main, test] | |
pull_request: | |
branches: [main, test] | |
jobs: | |
# Label of the container job | |
test: | |
runs-on: ubuntu-latest | |
container: python:3.9 | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Run Tox | |
run: | | |
tox | |
env: | |
PGHOST: postgres | |
PGPORT: 5432 | |
deploy_main: | |
runs-on: ubuntu-latest | |
container: python:3.9 | |
needs: test | |
permissions: | |
id-token: write | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build a binary wheel and a source tarball | |
run: | | |
echo "__version__ = \"$(date +%s).0.0\"" > VERSION | |
python -m build | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1.11 | |
deploy_test: | |
runs-on: ubuntu-latest | |
container: python:3.9 | |
needs: test | |
permissions: | |
id-token: write | |
if: github.ref == 'refs/heads/test' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade build packaging | |
- name: Build a binary wheel and a source tarball | |
run: | | |
echo "__version__ = \"$(date +%s).0.0\"" > VERSION | |
python -m build | |
- name: Publish distribution to Test PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1.11 | |
with: | |
repository-url: https://test.pypi.org/legacy/ |