test full #26
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: test full | |
on: | |
workflow_dispatch: | |
jobs: | |
full_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os-version: ['ubuntu-22.04','windows-latest','macos-latest'] | |
python-version: [ '3.11' ] | |
include: | |
- os-version: 'ubuntu-22.04' | |
python-version: '3.8' | |
- os-version: 'ubuntu-22.04' | |
python-version: '3.9' | |
- os-version: 'ubuntu-22.04' | |
python-version: '3.10' | |
- os-version: 'ubuntu-22.04' | |
python-version: '3.12' | |
runs-on: ${{ matrix.os-version }} | |
name: test package on ${{ matrix.os-version }} with ${{ matrix.python-version }} | |
steps: | |
#preparation | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: update pip | |
run: | | |
python -m pip install --upgrade pip | |
#installation | |
- name: install pypodo | |
run: | | |
pip install . | |
#test | |
- name: Launch test | |
uses: ./.github/actions/test | |