Skip to content

Commit

Permalink
chore: refactor folder structure to prepare for python codebase (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjendev committed Nov 8, 2023
1 parent 6048e79 commit 6e42d08
Show file tree
Hide file tree
Showing 1,730 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install dependencies
run: dotnet restore
working-directory: ./src
working-directory: ./src/dotnet
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ./src
working-directory: ./src/dotnet
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: ./src
working-directory: ./src/dotnet
- name: Upload dotnet test results
uses: actions/upload-artifact@v3
with:
name: dotnet-results-${{ matrix.dotnet-version }}
path: ./src/TestResults-${{ matrix.dotnet-version }}
path: ./src/dotnet/TestResults-${{ matrix.dotnet-version }}
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
- name: Create the package
run: dotnet pack --configuration Release src/AzureDataFactory.TestingFramework
run: dotnet pack --configuration Release src/dotnet/AzureDataFactory.TestingFramework
- name: Publish the package to GPR
if: github.ref == 'refs/heads/main'
run: dotnet nuget push src/AzureDataFactory.TestingFramework/bin/Release/*.nupkg --source "https://nuget.pkg.github.com/arjendev/index.json" --api-key ${{ secrets.PUBLISH_KEY }} --skip-duplicate
run: dotnet nuget push src/dotnet/AzureDataFactory.TestingFramework/bin/Release/*.nupkg --source "https://nuget.pkg.github.com/arjendev/index.json" --api-key ${{ secrets.PUBLISH_KEY }} --skip-duplicate
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 6e42d08

Please sign in to comment.