Skip to content

Point build and test at the correct directory #5

Point build and test at the correct directory

Point build and test at the correct directory #5

Workflow file for this run

name: Safe Bookstore build and test
on:
pull_request:
branches:
- master
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore tools
run: dotnet tool restore
- name: Test
run: dotnet run devopstests
- name: Build
run: dotnet run bundle