You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
# ------------------------------------------------------------------------------
|
|
# <auto-generated>
|
|
#
|
|
# This code was generated.
|
|
#
|
|
# - To turn off auto-generation set:
|
|
#
|
|
# [GitHubActions (AutoGenerate = false)]
|
|
#
|
|
# - To trigger manual generation invoke:
|
|
#
|
|
# nuke --generate-configuration GitHubActions_PR --host GitHubActions
|
|
#
|
|
# </auto-generated>
|
|
# ------------------------------------------------------------------------------
|
|
|
|
name: PR
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
windows-latest:
|
|
name: windows-latest
|
|
runs-on: windows-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: 'Run: Clean, Test, Pack'
|
|
run: ./build.cmd Clean Test Pack
|
|
- name: 'Publish: publish'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: publish
|
|
path: publish
|
|
ubuntu-latest:
|
|
name: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: 'Run: Clean, Test, Pack'
|
|
run: ./build.cmd Clean Test Pack
|
|
- name: 'Publish: publish'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: publish
|
|
path: publish
|