Skip to content

minor changes in readme.md file #48

minor changes in readme.md file

minor changes in readme.md file #48

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up .Net
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build src/AsyncLinqR.sln --configuration Release
- name: Test
run: dotnet test src/AsyncLinqR.Tests