Skip to content

fix publisheddate and uploadeddate parsing #29

fix publisheddate and uploadeddate parsing

fix publisheddate and uploadeddate parsing #29

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '6.0' ]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore ./src
- name: Build
run: dotnet build ./src --configuration Release --no-restore
- name: Test
run: dotnet test ./src/YTSearch.NET.Tests/YTSearch.NET.Tests.csproj