Skip to content

Commit

Permalink
Skip net7.0 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrzajac committed Oct 19, 2023
1 parent 5cefebc commit 244f3b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ jobs:
strategy:
matrix:
package-module: ${{ fromJSON(needs.init.outputs.matrix) }}
target-framework: [net7.0, net472, net48]
target-framework: [net472, net48] # What to do with net7.0?
include:
- target-framework: net7.0
- target-framework: net48
collect-code-coverage: true
if: ${{ needs.init.outputs.matrix != '' }}
steps:
Expand All @@ -110,10 +110,10 @@ jobs:
CI: true
StrongNameKey: ${{ secrets.SIGNING_KEY }}
StrongNameKeyPath: ${{ steps.signing-key.outputs.file-path }}
- name: 🧪 test ${{ matrix.package-module }} in net472
- name: 🧪 test ${{ matrix.package-module }} in ${{ matrix.target-framework }}
if: ${{ matrix.collect-code-coverage != true }}
run: dotnet test ./src/${{ env.Namespace }}.${{ matrix.package-module }}.Tests/ --no-build -f ${{ matrix.target-framework }}
- name: 🧪 test
- name: 🧪 test ${{ matrix.package-module }} in ${{ matrix.target-framework }} and collect code coverage
if: ${{ matrix.collect-code-coverage == true }}
uses: ./.github/actions/test-module
with:
Expand Down

0 comments on commit 244f3b1

Please sign in to comment.