Skip to content

Show progress of reading files' tags #24

Show progress of reading files' tags

Show progress of reading files' tags #24

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test via the dotnet CLI
run: dotnet test