Skip to content

Bump actions/checkout from 4.2.1 to 4.2.2 (#296) #577

Bump actions/checkout from 4.2.1 to 4.2.2 (#296)

Bump actions/checkout from 4.2.1 to 4.2.2 (#296) #577

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@v4.2.2
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./ApiDoctor.sln
- name: Build
run: dotnet build ./ApiDoctor.sln --no-restore
- name: Test
run: dotnet test ./ApiDoctor.sln --no-build --verbosity normal