Add GetSchedules method to retrieve active schedule data #347
Workflow file for this run
This file contains hidden or 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: .NET | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build_and_tests_on_dotnet_8: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore ./Src/All.sln | |
| - name: Build | |
| run: dotnet build ./Src/All.sln | |
| - name: Mailer Tests | |
| run: dotnet test ./Src/UnitTests/MailerUnitTests/MailerUnitTests.csproj | |
| - name: Unit Tests | |
| run: dotnet test ./Src/UnitTests/CoravelUnitTests/CoravelUnitTests.csproj | |
| - name: Integration Tests | |
| run: dotnet test ./Src/IntegrationTests/Tests/Tests.csproj | |