Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Main

on:
push:
branches:
- main
pull_request:

jobs:
build-test:
name: Build and Test
runs-on: windows-latest
timeout-minutes: 15

steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Build
run: |
dotnet msbuild DynamoPythonNet3.sln -p:Configuration=Release -restore

- name: Test
run: dotnet test
4 changes: 2 additions & 2 deletions DSPythonNet3/DSPythonNet3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<ItemGroup>
<InternalsVisibleTo Include="PythonMigrationViewExtension" />
<InternalsVisibleTo Include="DynamoPythonTests" />

<PackageReference Include="DynamoVisualProgramming.Core" Version="$(DynamoPackageVersion)" ExcludeAssets="runtime" />
<PackageReference Include="DynamoVisualProgramming.DynamoServices" Version="$(DynamoPackageVersion)" ExcludeAssets="runtime" />
<PackageReference Include="Python.Included" Version="3.11.6" />
<PackageReference Include="pythonnet" Version="3.1.0-preview-ADSK-*" />
<PackageReference Include="Autodesk.pythonnet" Version="3.1.0-preview*" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
Expand Down
19 changes: 0 additions & 19 deletions nuget.config

This file was deleted.

Loading