FIx CSV output (missing comma) and include number of processes in CSV output #36
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
name: CI | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
envs: | | |
- linux: py39-test-psutil56 | |
- linux: py310-test-psutil57 | |
- linux: py311-test-psutil58-alldeps | |
- linux: py312-test-psutil59 | |
- macos: py39-test-psutil56 | |
- macos: py310-test-psutil57 | |
- macos: py311-test-psutil58-alldeps | |
- macos: py312-test-psutil59 | |
- windows: py39-test-psutil56 | |
- windows: py310-test-psutil57 | |
- windows: py311-test-psutil58-alldeps | |
- windows: py312-test-psutil59 | |
publish: | |
needs: tests | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
with: | |
test_extras: 'test' | |
test_command: pytest --pyargs psrecord | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |