Skip to content

Commit

Permalink
ci: remove windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
kjbtech committed Jul 25, 2024
1 parent 8297943 commit 7355799
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,7 @@ on:
jobs:
build:
name: Build
timeout-minutes: 30
strategy:
matrix:
os:
- "ubuntu-24.04"
- "windows-2022"
dotnet-version:
- "net8.0"
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand All @@ -27,16 +19,16 @@ jobs:
- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
key: nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
nuget-
- name: Install dependencies
run: |
dotnet restore
- name: Build
run: |
dotnet build -f ${{ matrix.dotnet-version }} --no-restore
dotnet build --no-restore

0 comments on commit 7355799

Please sign in to comment.