Skip to content

Commit

Permalink
Initial CI workflow (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuo13 committed Dec 15, 2023
1 parent 83b6b62 commit 321102f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Continuous integration

on:
push:
paths-ignore:
- '**.md'

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

env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_NOLOGO: true

steps:
- name: Clone repository
uses: actions/checkout@v4

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore --configuration Release

0 comments on commit 321102f

Please # to comment.