From 91b441e42465d4115a33ba211ad85aa218e98d30 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Tue, 5 Dec 2023 16:04:24 -0500 Subject: [PATCH] Fix CI workflow --- .github/workflows/tox-tests.yml | 63 +++++++++++++++++---------------- 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index 2908f52..2002041 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -20,34 +20,35 @@ concurrency: cancel-in-progress: true jobs: - uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 - secrets: - CODECOV_TOKEN: ${{ secrets.CODECOV }} - with: - submodules: false - coverage: '' - envs: | - - name: Codestyle - linux: codestyle - - - name: Python 3.8 on Linux with oldest supported dependencies - linux: py38-test-oldestdeps - toxargs: -v - - - name: Python 3.9 on Windows with minimal dependencies - windows: py39-test - toxargs: -v - - - name: Python 3.10 on OSX with minimal dependencies - macos: py310-test - toxargs: -v - - - name: Python 3.11 on Linux with all dependencies, remote data, and coverage - linux: py311-test-all-cov - coverage: codecov - toxargs: -v - posargs: --remote-data=any - - - name: (Allowed Failure) Python 3.12 on Linux with dev dependencies - linux: py312-test-devdeps - toxargs: -v + tests: + uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 + secrets: + CODECOV_TOKEN: ${{ secrets.CODECOV }} + with: + submodules: false + coverage: '' + envs: | + - name: Codestyle + linux: codestyle + + - name: Python 3.8 on Linux with oldest supported dependencies + linux: py38-test-oldestdeps + toxargs: -v + + - name: Python 3.9 on Windows with minimal dependencies + windows: py39-test + toxargs: -v + + - name: Python 3.10 on OSX with minimal dependencies + macos: py310-test + toxargs: -v + + - name: Python 3.11 on Linux with all dependencies, remote data, and coverage + linux: py311-test-all-cov + coverage: codecov + toxargs: -v + posargs: --remote-data=any + + - name: (Allowed Failure) Python 3.12 on Linux with dev dependencies + linux: py312-test-devdeps + toxargs: -v