Skip to content

Commit

Permalink
Problems with actions
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser29 committed Apr 12, 2024
1 parent f078627 commit cedc4fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/dotnet-build-hardwaremanifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
Expand All @@ -18,10 +20,10 @@ jobs:
run: dotnet restore
- name: Build
working-directory: dotnet/HardwareManifestPlugin
run: dotnet build
run: dotnet build --no-restore
- name: Test
working-directory: dotnet/HardwareManifestPlugin
run: dotnet test
run: dotnet test --no-build
- name: Pack
working-directory: dotnet/HardwareManifestPlugin
run: dotnet pack
10 changes: 6 additions & 4 deletions .github/workflows/dotnet-build-paccor_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
Expand All @@ -18,10 +20,10 @@ jobs:
run: dotnet restore
- name: Build
working-directory: dotnet/paccor_scripts
run: dotnet build
run: dotnet build --no-restore
- name: Test
working-directory: dotnet/paccor_scripts
run: dotnet test
run: dotnet test --no-build
- name: Pack
working-directory: dotnet/paccor_scripts
run: dotnet pack
Expand Down

0 comments on commit cedc4fd

Please sign in to comment.