Skip to content

Commit

Permalink
Add basic tool CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Aug 14, 2024
1 parent d05efd7 commit e8d2405
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/tool_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Tool Build'

on:
push:
branches:
- main

jobs:
tool-build:
name: Build Deployments Tool
runs-on: ubuntu-latest
strategy:
matrix:
configuration: [ 'Debug', 'Release' ]
steps:
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'

- name: Checkout
uses: actions/checkout@v4

- name: Restore
run: |
cd temp_workspace
dotnet restore
- name: Build
run: dotnet build -c ${{ matrix.configuration }}

0 comments on commit e8d2405

Please sign in to comment.