[CI] rename jobs in workflows #144
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
# Run the test cases for each commit, without build. | |
name: Test | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
job1: | |
name: Test on Linux | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
python_version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install pytest psutil | |
- name: Test | |
run: | | |
pytest -v | |
job2: | |
name: Test on MacOS | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-14] | |
python_version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install pytest psutil | |
- name: Test | |
run: | | |
brew install inih | |
pytest -v | |
job3: | |
name: Test on Windows | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-2019] | |
python_version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install pytest psutil | |
- name: Test | |
run: | | |
pytest -v |