Update tmpdir
usage to tmp_path
and enable no:legacypath
#63
Workflow file for this run
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: | |
branches: | |
- main | |
tags: | |
- '*' | |
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: | |
submodules: false | |
coverage: '' | |
envs: | | |
# PEP | |
- linux: check-style | |
- linux: check-build | |
# Basic tests (Windows not supported) | |
- linux: py39-test | |
- macos: py310-test | |
- linux: py311-test | |
# --bigdata untestable due to Artifactory lockdown | |
- linux: py310-slow-stable | |
# Test with dev versions of upstream dependencies | |
- linux: py312-slow-devdeps | |
posargs: --verbose |