Skip to content

Merge pull request #2 from blakeNaccarato/renovate/all #2

Merge pull request #2 from blakeNaccarato/renovate/all

Merge pull request #2 from blakeNaccarato/renovate/all #2

Workflow file for this run

# Simulate local contributor workflow sync process
name: "contrib"
on:
workflow_dispatch:
pull_request:
paths:
- ".github/workflows/contrib.yml"
- "scripts/Sync-Py.ps1"
- "scripts/c_therm_tci_tools/**"
- "scripts/pyproject.toml"
push:
branches: ["main"]
paths:
- ".github/workflows/contrib.yml"
- "scripts/Sync-Py.ps1"
- "scripts/c_therm_tci_tools/**"
- "scripts/pyproject.toml"
defaults:
run:
shell: "pwsh"
env:
SYNC_PY_DISABLE_CI: true
jobs:
no-spaces-in-path:
strategy:
matrix:
runner:
- "macos-13"
- "ubuntu-22.04"
- "windows-2022"
runs-on: "${{ matrix.runner }}"
steps:
- uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11" # v4.1.1
with:
submodules: True
- uses: "actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d" # v5.1.0
with:
python-version: "3.11"
- run: "scripts/Sync-Py.ps1 -Lock -Version '3.11'"
spaces-in-path:
strategy:
matrix:
runner:
- "macos-13"
- "ubuntu-22.04"
- "windows-2022"
runs-on: "${{ matrix.runner }}"
steps:
- run: "New-Item -ItemType Directory 'repo path with spaces'"
- uses: "actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11" # v4.1.1
with:
submodules: True
path: "repo path with spaces"
- uses: "actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d" # v5.1.0
with:
python-version: "3.11"
- working-directory: "repo path with spaces"
run: "scripts/Sync-Py.ps1 -Lock -Version '3.11'"