Skip to content

Update to dotnet-9, modernize ependencies: AngularJS-1.8.3, gulp, others #24

Update to dotnet-9, modernize ependencies: AngularJS-1.8.3, gulp, others

Update to dotnet-9, modernize ependencies: AngularJS-1.8.3, gulp, others #24

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Pack
run: |
cd src/IdentityManager2
dotnet pack -c Release -o publish --no-build
# - name: Publish
# uses: actions/upload-artifact@master
# with:
# name: IdentityManager2
# path: src/IdentityManager2/publish