Skip to content

Added async enumerators #1257

Added async enumerators

Added async enumerators #1257

Workflow file for this run

name: linux
on:
push:
branches: [ main ]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release --no-build --verbosity normal --collect:"XPlat Code Coverage"
- name: Coverage
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}