Skip to content

Web goat net8.0

Web goat net8.0 #38

Workflow file for this run

name: build .NET 7
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.100-rc.1.22431.12
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore