Skip to content

Commit

Permalink
Merge pull request #15 from FrApp42/dev/main
Browse files Browse the repository at this point in the history
Clean code & CI
  • Loading branch information
sikelio authored Jul 29, 2024
2 parents 7a25778 + c36d4b6 commit bb52b99
Show file tree
Hide file tree
Showing 31 changed files with 218 additions and 2,031 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: .NET Build

on:
push:
branches: [ "main", "dev/*" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
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
370 changes: 0 additions & 370 deletions ApiRequest/ApiRequest.cs

This file was deleted.

Loading

0 comments on commit bb52b99

Please sign in to comment.