Skip to content

Feature/standings

Feature/standings #5

Workflow file for this run

name: Test
on:
push:
branches: [ "master" ]
paths-ignore:
- '*.md'
- '.gitignore'
pull_request:
branches: [ "master" ]
paths-ignore:
- '*.md'
- '.gitignore'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build
- name: Test
run: dotnet test --no-build --verbosity normal