Use a 2D array in the README examples so they work with the default t… #354
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| schedule: | |
| # Run every Sunday at 06:53 UTC | |
| - cron: 53 6 * * 0 | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@4193751d511425d4edc1d5657c24b2128d49b017 # v2.6.4 | |
| with: | |
| envs: | | |
| - linux: codestyle | |
| - windows: py39-test-pytest62 | |
| - linux: py310-test-pytest62 | |
| - macos: py310-test-pytest70 | |
| - windows: py310-test-pytest71 | |
| - linux: py311-test-pytest72 | |
| - macos: py311-test-pytest73 | |
| - windows: py312-test-pytest74 | |
| - linux: py313-test-pytest83 | |
| - linux: py313-test-pytest90 | |
| - linux: py313-test-parallel | |
| - linux: py314t-test | |
| - linux: py314t-test-parallel | |
| - linux: py313-test-devdeps | |
| publish: | |
| needs: tests | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@4193751d511425d4edc1d5657c24b2128d49b017 # v2.6.4 | |
| with: | |
| test_extras: test | |
| test_command: pytest $GITHUB_WORKSPACE/tests; pytest --arraydiff $GITHUB_WORKSPACE/tests | |
| python-version: '3.9' | |
| secrets: | |
| pypi_token: ${{ secrets.pypi_password }} |