Test Daily #48
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
| name: Test Daily | |
| on: | |
| schedule: | |
| # Per https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule | |
| # Make this a weird time | |
| - cron: "23 5 * * *" | |
| workflow_dispatch: {} | |
| jobs: | |
| ubuntu: | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| uses: ./.github/workflows/tests.yml | |
| with: | |
| io: "io or not io and not smart_io" | |
| os: "ubuntu-latest" | |
| python-version: ${{ matrix.python-version }} | |
| secrets: inherit | |
| mac: | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| uses: ./.github/workflows/tests.yml | |
| # The If Always/Needs combo here is so that these tests can be | |
| # run sequentially but don't care about eachother failing | |
| # We want to run sequentially to minimise the load on mep-dev | |
| if: ${{ always() }} | |
| needs: [ubuntu] | |
| with: | |
| io: "io or not io and not smart_io" | |
| os: "macos-latest" | |
| python-version: ${{ matrix.python-version }} | |
| secrets: inherit | |
| windows: | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| uses: ./.github/workflows/tests.yml | |
| if: ${{ always() }} | |
| needs: [ubuntu, mac] | |
| with: | |
| io: "io or not io and not smart_io" | |
| os: "windows-latest" | |
| python-version: ${{ matrix.python-version }} | |
| secrets: inherit |