Skip to content

Bump pyinstaller from 3.6 to 5.13.1 in /docs/source #30

Bump pyinstaller from 3.6 to 5.13.1 in /docs/source

Bump pyinstaller from 3.6 to 5.13.1 in /docs/source #30

Workflow file for this run

# This workflow will install Python dependencies, and run tests with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: ingrid_ci
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test-ubuntu-latest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
cd tests
pytest -vv .
test-macos-latest:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
# Only testing 3.11 due to known tk macos issue with python < 3.11
# See issue here: https://github.com/actions/setup-python/issues/649
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
cd tests
pytest -vv .
test-windows-latest:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
cd tests
pytest -vv .