Skip to content

ft: update the build script #4

ft: update the build script

ft: update the build script #4

Workflow file for this run

name: Build and Test
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: |
dotnet restore ./src/dotnetANPR/DotNetANPR.csproj
dotnet restore ./src/dotnetANPR.CLI/DotNetANPR.CLI.csproj
- name: Build
run: dotnet build --configuration Release