Skip to content

ci: update global workflows #9

ci: update global workflows

ci: update global workflows #9

Workflow file for this run

---
name: CI
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened]
push:
branches: [master]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pytest:
strategy:
fail-fast: false
matrix:
os:
- macos-11
- macos-12
- windows-2019
- windows-2022
- ubuntu-20.04
- ubuntu-22.04
python: ["2.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
id: python
uses: ./
with:
python-version: ${{ matrix.python }}
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade -r requirements-dev.txt
- name: Test with pytest
id: test
env:
INPUT_PYTHON_VERSION: ${{ matrix.python }}
shell: bash
run: |
python -m pytest \
-rxXs \
--tb=native \
--verbose \
tests