Skip to content

Commit

Permalink
Merge branch 'master' into feat/add-helix
Browse files Browse the repository at this point in the history
  • Loading branch information
occluder authored Oct 29, 2023
2 parents 3481e53 + a46df9c commit b2a4f05
Show file tree
Hide file tree
Showing 131 changed files with 9,710 additions and 917 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build (Common)

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

jobs:

build:

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Build
run: |
cd .\MiniTwitch.Common\
dotnet build -c Release
30 changes: 30 additions & 0 deletions .github/workflows/build-irc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build (Irc)

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

jobs:

build:

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Build
run: |
cd .\MiniTwitch.Irc\
dotnet build -c Release
30 changes: 30 additions & 0 deletions .github/workflows/build-pubsub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build (PubSub)

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

jobs:

build:

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Build
run: |
cd .\MiniTwitch.PubSub\
dotnet build -c Release
30 changes: 30 additions & 0 deletions .github/workflows/test-irc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test (Irc)

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

jobs:

build:

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Run tests
run: |
cd .\MiniTwitch.Irc.Test\
dotnet test
30 changes: 30 additions & 0 deletions .github/workflows/test-pubsub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test (PubSub)

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

jobs:

build:

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

- name: Run tests
run: |
cd .\MiniTwitch.PubSub.Test\
dotnet test
Loading

0 comments on commit b2a4f05

Please sign in to comment.