⬆️ .NET: Bump Scalar.AspNetCore from 1.2.35 to 1.2.39 #263
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: Meta Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
# Tests that the dotnet new template is valid | |
- name: Install | |
run: dotnet new install . | |
# Tests that the template follows the parent structure | |
# Tests that the dotnet new command works 'hona-vsa' | |
- name: Create new Project | |
run: | | |
mkdir -p ./temp/MyTestApp | |
cd ./temp/MyTestApp | |
dotnet new ssw-ca | |
# Tests that a fresh project can be built (in debug mode) | |
- name: Build fresh Project | |
run: | | |
cd ./temp/MyTestApp | |
dotnet build --configuration Debug | |
# Tests that a query can be generated | |
- name: Create a query | |
run: | | |
cd src/Application/UseCases | |
mkdir Products | |
cd Products | |
dotnet new ssw-ca-query --name GetProducts --entityName Product --slnName MyTestApp | |
# Tests that a query leaves the app in a buildable state | |
- name: Build after a query | |
run: | | |
cd ./temp/MyTestApp | |
dotnet build --configuration Release | |
# Tests that a command can be generated | |
- name: Create a command | |
run: | | |
cd src/Application/UseCases | |
cd Products | |
dotnet new ssw-ca-command --name CreateProduct --entityName Product --slnName MyTestApp | |
# Tests that a command leaves the app in a buildable state | |
- name: Build after a command | |
run: | | |
cd ./temp/MyTestApp | |
dotnet build --configuration Release |