Skip to content

chore(deps): bump xunit.runner.reporters from 2.6.1 to 2.6.2 (#13) #39

chore(deps): bump xunit.runner.reporters from 2.6.1 to 2.6.2 (#13)

chore(deps): bump xunit.runner.reporters from 2.6.1 to 2.6.2 (#13) #39

Workflow file for this run

name: dotnet package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
env:
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal Buildkite.TestAnalytics.Tests/Buildkite.TestAnalytics.Tests.fsproj