#19 version bump read me changes + test.yml #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch actions | |
on: push | |
jobs: | |
test_DataAccess: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
# Set up local NuGet repo | |
- name: Setup GitHub NuGet | |
run: dotnet nuget add source --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/Ian-Webster/index.json" | |
- name: Check for Changes in Repository Project | |
run: | | |
if [[ $(git diff --name-only ${{ github.event.before }} ${{ github.sha }} 'DataAccess.Repository/') ]]; then | |
echo "Changes detected in DataAccess.Repository project. Restoring packages, running build and testing..." | |
dotnet restore 'DataAccess.Repository' | |
dotnet build --configuration Release 'DataAccess.Repository' | |
dotnet test DataAccess.Repository' | |
else | |
echo "No changes in DataAccess.Repository project. Skipping build." | |
fi |