Skip to content

fix: CLI error reporting when parsing fails #15

fix: CLI error reporting when parsing fails

fix: CLI error reporting when parsing fails #15

Workflow file for this run

name: test
on: [ push, pull_request ]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test AutoTag.Core.Test --no-build --verbosity normal
integration-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
env:
TMDB_API_KEY: ${{ secrets.TMDB_API_KEY }}
run: dotnet test AutoTag.CLI.Test --no-build --verbosity normal