use pathlib to manage path names in import/export functions #1156
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: tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
tests_x86_64: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ | |
"3.9", | |
"3.10", | |
#"3.11" | |
] | |
os: [macos-13, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup/ | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: test | |
run: | | |
python -m pytest | |
tests_arm64: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ | |
#"3.9", | |
"3.10", | |
#"3.11" | |
] | |
os: [macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-macos-arm64/ | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: test | |
run: | | |
python -m pytest |