Skip to content

Commit

Permalink
feat(ci): working basic ci (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablePrime authored Oct 26, 2023
1 parent 47804e0 commit 6d36e8e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Build App

on:
push:
branches:
- "main"
paths-ignore:
- '**/*.md'
pull_request:
Expand All @@ -14,13 +12,13 @@ on:

jobs:
build:
runs-on: windows-latest
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Setup .NET 4.6.2
- name: Setup .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: '4.6.2'
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down

0 comments on commit 6d36e8e

Please sign in to comment.