-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
benoit-cty
committed
Mar 6, 2025
1 parent
9f883dc
commit 43dd49e
Showing
1 changed file
with
1 addition
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ jobs: | |
- name: Build conda package | ||
uses: prefix-dev/[email protected] | ||
with: | ||
build-args: --channel openfisca --channel conda-forge --output-dir ./conda-bld | ||
build-args: --quiet --channel openfisca --channel conda-forge --output-dir ./conda-bld | ||
recipe-path: .conda/recipe.yaml | ||
upload-artifact: false | ||
- name: Setup conda | ||
|
@@ -74,23 +74,12 @@ jobs: | |
python-version: ${{ env.DEFAULT_PYTHON_VERSION }} | ||
use-mamba: true | ||
channels: conda-forge,defaults | ||
env: | ||
# Réduire la verbosité de Conda | ||
CONDA_VERBOSITY: 0 | ||
# Rediriger la sortie | ||
PYTHONWARNINGS: ignore | ||
- name: Install package | ||
shell: pwsh | ||
run: mamba install --channel ./conda-bld --channel openfisca openfisca-france | ||
- name: Test openfisca-france conda package | ||
shell: pwsh | ||
run: openfisca test tests/formulas/irpp.yaml | ||
- name: Summarize results | ||
run: | | ||
echo "Fin de build-and-test-conda" > $GITHUB_STEP_SUMMARY | ||
|
||
lint-files: | ||
runs-on: ubuntu-24.04 | ||
|
@@ -226,11 +215,6 @@ jobs: | |
python-version: ${{ env.DEFAULT_PYTHON_VERSION }} | ||
use-mamba: true | ||
channels: conda-forge,defaults | ||
env: | ||
# Réduire la verbosité de Conda | ||
CONDA_VERBOSITY: 0 | ||
# Rediriger la sortie | ||
PYTHONWARNINGS: ignore | ||
- name: Restore build | ||
uses: actions/cache@v4 | ||
with: | ||
|