Skip to content

Commit

Permalink
Merge branch 'wip' of github-pp:Earthquake-Project/Shockky into wip
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulusParssinen committed Feb 22, 2024
2 parents 3c50e8b + 1fb12dd commit 221845c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/dotnet-core.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
branches:
- master
- wip
pull_request:
branches:
- master
- wip

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
run: dotnet restore --verbosity normal
- name: Build
run: dotnet build --configuration Release --no-restore --verbosity normal
- name: Testi
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal

0 comments on commit 221845c

Please sign in to comment.