third-party: bump src/FSharp.Data from 6e7d332
to 8a6688f
#138
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
pull_request: | |
branches: | |
- next | |
- main | |
push: | |
branches: | |
- next | |
tags-ignore: | |
- '**' | |
jobs: | |
unit_tests: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Pre-test install | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Cache packages | |
uses: actions/cache@v3 | |
with: | |
path: |- | |
${{ github.workspace }}/.paket | |
${{ github.workspace }}/src/FSharp.Data/.paket | |
${{ github.workspace }}/src/FSharp.Data/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('src/Fornax.Seo/Directory.Build.props') }} | |
restore-keys: |- | |
${{ runner.os }}-nuget- | |
${{ runner.os }}- | |
- name: Run tests | |
run: |- | |
dotnet tool restore | |
dotnet paket restore | |
dotnet fake build -e CI=true |