diff --git a/.github/workflows/tax-benefit.yml b/.github/workflows/tax-benefit.yml new file mode 100644 index 0000000..ab3e71e --- /dev/null +++ b/.github/workflows/tax-benefit.yml @@ -0,0 +1,19 @@ +name: Validate, integrate & deploy to tax-benefit.org + +on: + - push + - workflow_dispatch + +jobs: + validate_yaml: + uses: tax-benefit/actions/.github/workflows/validate_yaml.yml@v2.1.0 + with: + parameters_path: "openfisca_tunisia/parameters" + secrets: + token: ${{ secrets.CONTROL_CENTER_TOKEN }} + deploy: + uses: tax-benefit/actions/.github/workflows/deploy.yml@v2.1.0 + with: + python_package: "openfisca_tunisia" + secrets: + token: ${{ secrets.CONTROL_CENTER_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f14c248..65ad3c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 0.33.2 - [#126](https://github.com/openfisca/openfisca-tunisia/pull/126) + +* Ajoute la validation des paramètres YAML ainsi que l'intégration à la CI tax-benefit.org. + ### 0.33.1 - [#117](https://github.com/openfisca/openfisca-tunisia/pull/117) * Mets à jour la dépendance à pytest diff --git a/setup.py b/setup.py index 652b3db..ecfec73 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name = 'OpenFisca-Tunisia', - version = '0.33.1', + version = '0.33.2', author = 'OpenFisca Team', author_email = 'contact@openfisca.org', classifiers = [classifier for classifier in classifiers.split('\n') if classifier],