Skip to content

build-lf-lookup-tables #7

build-lf-lookup-tables

build-lf-lookup-tables #7

Workflow file for this run

name: build-lf-lookup-tables
on:
push:
branches: [ '\d+.x' ]
pull_request:
branches: [ '\d+.x' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Tag Versioning
uses: paulhatch/semantic-version@v5
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal