Skip to content

test full

test full #26

Workflow file for this run

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