Skip to content

Merge remote-tracking branch 'origin/dev' into master #97

Merge remote-tracking branch 'origin/dev' into master

Merge remote-tracking branch 'origin/dev' into master #97

Workflow file for this run

name: GitHub CI
on:
push:
paths:
- 'build.py'
- 'Pipfile'
- '.github/workflows/nuitka.yml'
- 'pyro/**'
- 'tools/**'
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Visual Studio environment
if: success()
uses: seanmiddleditch/gha-setup-vsdevenv@master
- name: Set up Python 3.12.4 (x64)
if: success()
uses: actions/setup-python@v5
with:
python-version: 3.12.4
architecture: x64
cache: pip
- name: Create virtual environment
if: success()
run: python -m venv env
- name: Install requirements
if: success()
run: pip install -r requirements.txt
- name: Run build script
if: success()
run: python D:\a\pyro\pyro\build.py --no-zip
- name: Upload artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: pyro-master-${{ github.event.repository.pushed_at }}
path: D:\a\pyro\pyro\pyro.dist