Skip to content

Bump AasCore.Aas3_0 and 18 others #14

Bump AasCore.Aas3_0 and 18 others

Bump AasCore.Aas3_0 and 18 others #14

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore --locked-mode
working-directory: source
- name: Build
run: dotnet build --no-restore
working-directory: source
# - name: Test
# run: dotnet test --no-build --verbosity normal
# working-directory: source