Skip to content

Commit

Permalink
Create Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Antyss77 committed Aug 16, 2023
1 parent 45c858b commit 5b21779
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Benchmark
run: dotnet run -c Release --project Benchmarks/Benchmarks.csproj
6 changes: 6 additions & 0 deletions .idea/.idea.StringExtension/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5b21779

Please sign in to comment.