Skip to content

Commit

Permalink
Simplify build_and_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DrEsteban committed May 23, 2024
1 parent 1c307e6 commit e361011
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,16 @@ on:
branches: [ "main" ]
workflow_dispatch:


jobs:
build_and_test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Build and Test
run: dotnet test --verbosity normal

0 comments on commit e361011

Please sign in to comment.