Skip to content

Bump the ci-actions group across 1 directory with 4 updates #63

Bump the ci-actions group across 1 directory with 4 updates

Bump the ci-actions group across 1 directory with 4 updates #63

Workflow file for this run

name: Test Builds
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions: {}
jobs:
exe-build:
name: Test exe Build
runs-on: windows-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.13" # build with oldest supported python
- name: Install the module
run: |
python -m pip install --upgrade pip
python -m pip install . --group build
- name: Build the application
run: >-
python application/setup.py build
- name: Store the built app
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: splitguides-app-dev
path: build/SplitGuides_v*.zip
retention-days: 1
wheel-build:
name: Test Wheel Build
runs-on: windows-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.13"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: python-package-distributions
path: dist/
retention-days: 1