Skip to content

Commit

Permalink
Build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Koutanov committed Jan 28, 2024
1 parent 9c38ac7 commit 3ab5f86
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# actors
`actors`
===
[![Build Status](https://img.shields.io/github/actions/workflow/status/kindredgroup/actors/dotnet.yml?branch=master&style=flat-square&logo=github)](https://github.com/kindredgroup/actors/actions/workflows/dotnet.yml)

Lightweight actor pattern for .NET.

# Examples
See the `Examples` project for a variety of typical actor use cases. Run all examples with

```sh
just run
```

Pass the name of an example to run just that. For example, to run the `Batch` example:

```sh
just run Batch
```

0 comments on commit 3ab5f86

Please sign in to comment.