Skip to content

Initial implementation of stripepy view #83

Initial implementation of stripepy view

Initial implementation of stripepy view #83

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- ".github/workflows/ci.yml"
- "src/**"
- "test/**"
- ".gitignore"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/ci.yml"
- "src/**"
- "test/**"
- ".gitignore"
- "pyproject.toml"
# https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
matrix-factory:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-result.outputs.result }}
steps:
- name: Generate matrix
uses: actions/github-script@v7
id: set-result
with:
script: |
// Documentation
// https://docs.github.com/en/actions/learn-github-actions/contexts#fromjson
// https://github.com/actions/runner/issues/982#issuecomment-809360765
const platforms = ["windows-latest", "macos-latest", "ubuntu-latest"]
var python_versions = ["3.9", "3.12"]
if ("${{github.event_name}}" != "pull_request") {
python_versions = python_versions.concat(["3.10", "3.11"])
}
var includes = []
for (const plat of platforms) {
for (const ver of python_versions) {
includes.push({os: plat, python_version: ver})
}
}
return { include: includes }
ci:
name: CI
needs: [matrix-factory]
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix-factory.outputs.matrix) }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install package
run: pip install --verbose '.[test]'
- name: Run unit tests
run: python -m pytest test -v
- name: Run CLI tests
run: |
stripepy --help
stripepy --version
ci-status-check:
name: Status Check (CI)
if: ${{ always() }}
runs-on: ubuntu-latest
needs:
- ci
steps:
- name: Collect job results
if: needs.ci.result != 'success'
run: exit 1