Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andyvorld committed Jan 16, 2024
1 parent 56c4fc7 commit 3552f1b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Nightly Builds

on:
workflow_dispatch:

jobs:
build:
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8

- uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Execute unit tests
run: python .\publish.py --version-suffix="-nightly"

0 comments on commit 3552f1b

Please # to comment.