Summary
Jobs
List of modules
test-modules (account_account_som)
test-modules (account_invoice_som)
test-modules (base_extended_som)
test-modules (dx_invoice_supplier_renumber)
test-modules (giscedata_facturacio_comer_som)
test-modules (giscedata_facturacio_iva_10_som)
test-modules (giscedata_facturacio_som)
test-modules (report_tester)
test-modules (som_account_invoice_pending)
test-modules (som_assets)
test-modules (som_atc)
test-modules (som_autofactura)
test-modules (som_autoreclama)
test-modules (som_auvidi)
test-modules (som_control_reports)
test-modules (som_crawlers)
test-modules (som_custom_views)
test-modules (som_documents_sensibles)
test-modules (som_empowering)
test-modules (som_energetica)
test-modules (som_estalvi)
test-modules (som_extend_facturacio_comer)
test-modules (som_extend_facturacio_facturae)
test-modules (som_facturacio_calculada)
test-modules (som_facturacio_comer)
test-modules (som_facturacio_flux_solar)
test-modules (som_facturacio_switching)
test-modules (som_factures_paper)
test-modules (som_gurb)
test-modules (som_indexada)
test-modules (som_infoenergia)
test-modules (som_informe)
test-modules (som_inversions)
test-modules (som_l10n_ES_aeat_mod347)
test-modules (som_leads_polissa)
test-modules (som_municipal_taxes)
test-modules (som_partner_account)
test-modules (som_partner_seq)
test-modules (som_polissa)
test-modules (som_polissa_administradora)
test-modules (som_polissa_condicions_generals)
test-modules (som_polissa_soci)
test-modules (som_poweremail_common_templates)
test-modules (som_remeses_base)
test-modules (som_stash)
test-modules (som_switching)
test-modules (som_telemesura)
test-modules (som_tg_comer_provider)
test-modules (som_webforms_helpers)
test-modules (somre_giscere_facturacio)
test-modules (somre_giscere_oferta)
test-modules (somre_ov_module)
test-modules (uiqmako_helpers)
test-modules (www_som)
Workflow file for this run
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
# This workflow is disabled because Github is not supporting matrix output separatly by job: PR https://github.com/actions/runner/pull/2477
name: 'Test som modules with developer branch'
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
POSTGRES_USER: erp
POSTGRES_PASSWORD: erp
jobs:
list-modules:
name: List of modules
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- id: set-matrix
run: |
echo "matrix=$(ls -d */ | sed 's|[/]||g' | egrep -v '^scripts|docs' | jq -R -s -c 'split("\n")[:-1]')" >> "$GITHUB_OUTPUT"
test-modules:
name: test-modules
needs: [list-modules]
strategy:
fail-fast: false
max-parallel: 10
matrix:
module: ${{ fromJson(needs.list-modules.outputs.matrix) }}
uses: ./.github/workflows/reusable_workflow.yml
with:
module: ${{matrix.module}}
erpbranch: developer
secrets: inherit
You can’t perform that action at this time.