Skip to content

Bump System.Composition from 8.0.0-preview.4.23259.5 to 8.0.0-preview.7.23375.6 #39

Bump System.Composition from 8.0.0-preview.4.23259.5 to 8.0.0-preview.7.23375.6

Bump System.Composition from 8.0.0-preview.4.23259.5 to 8.0.0-preview.7.23375.6 #39

Workflow file for this run

name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore weather.sln
- name: Build
run: dotnet build weather.sln --no-restore
- name: Test
run: dotnet test tests/Weather.Tests/Weather.Tests.csproj --no-build --verbosity normal