modified workflow_call #3
This file contains hidden or 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
| --- | |
| # Weekly complete matrix tests. | |
| # specified schedule below. | |
| name: Weekly main tests | |
| on: | |
| schedule: | |
| - cron: "20 6 * * 0" # Runs every day at 06:20 AM UTC | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'weeklytest' | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| weekly-linux: | |
| uses: ./.github/workflows/plugins.yaml | |
| strategy: | |
| matrix: | |
| runner: ["ubuntu-latest", "ubuntu-24.04-arm"] | |
| with: | |
| runner: ${{ matrix.runner }} |