Skip to content

Commit

Permalink
Add pack workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sjp committed Sep 3, 2022
1 parent 2cfd198 commit 04edba6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Pack

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Install dependencies
run: dotnet restore
working-directory: src

- name: Build
run: dotnet pack --configuration Release --no-restore
working-directory: src
6 changes: 6 additions & 0 deletions src/SJP.Schematic.lutconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<LUTConfig Version="1.0">
<Repository>..\</Repository>
<ParallelBuilds>true</ParallelBuilds>
<ParallelTestRuns>true</ParallelTestRuns>
<TestCaseTimeout>180000</TestCaseTimeout>
</LUTConfig>

0 comments on commit 04edba6

Please sign in to comment.