chore: maintenance update JUN 25 #277
Workflow file for this run
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: Run tests on all supported platforms | |
| on: | |
| pull_request: ~ | |
| workflow_dispatch: ~ | |
| jobs: | |
| test: | |
| name: Run test on ${{ matrix.os }} with ${{ matrix.py_ver }} | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| COINSTATS_API_KEY: ${{ secrets.COINSTATS_API_KEY }} | |
| strategy: | |
| matrix: | |
| os: | |
| - macOS-latest | |
| - macos-14 | |
| - macos-13 | |
| - ubuntu-latest | |
| - ubuntu-24.04 | |
| - ubuntu-22.04 | |
| - windows-latest | |
| - windows-2022 | |
| - windows-2019 | |
| runs-on: ${{ matrix.os }} | |
| if: ${{ ! github.event.pull_request.draft }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: pip install -r requirements-dev.txt | |
| - name: Run tests | |
| run: py.test -s --ignore=chk |