Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahStolk committed Jan 1, 2024
1 parent 738f7a5 commit ab1e41b
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 52 deletions.
6 changes: 3 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ charset = utf-8
indent_style = tab
insert_final_newline = true

[*.{csproj,pubxml}]
[*.{csproj,pubxml,yml}]
indent_style = space
indent_size = 2

[*.cs]
indent_size = 4
trim_trailing_whitespace = true
indent_size = 4
trim_trailing_whitespace = true
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: nuget
directory: "/src"
schedule:
interval: daily
- package-ecosystem: nuget
directory: "/src"
schedule:
interval: daily
36 changes: 18 additions & 18 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
on:
pull_request:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.401'
include-prerelease: false
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build src/DevilDaggersInfo.Web.sln -c Release
- name: Test
run: dotnet test src/DevilDaggersInfo.Web.sln -c Release --no-build
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.401'
include-prerelease: false
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build src/DevilDaggersInfo.Web.sln -c Release
- name: Test
run: dotnet test src/DevilDaggersInfo.Web.sln -c Release --no-build
54 changes: 27 additions & 27 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
on:
push:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.401'
include-prerelease: false
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build src/DevilDaggersInfo.Web.sln -c Release
- name: Test
run: dotnet test src/DevilDaggersInfo.Web.sln -c Release --no-build
- name: Pack
run: |
dotnet pack src/DevilDaggersInfo.Web.ApiSpec.Admin -c Release -o .
dotnet pack src/DevilDaggersInfo.Web.ApiSpec.Main -c Release -o .
dotnet pack src/DevilDaggersInfo.Web.ApiSpec.Tools -c Release -o .
- name: Push
run: dotnet nuget push *.nupkg -s nuget.org -k ${NUGET_SECRET} -n --skip-duplicate
env:
NUGET_SECRET: ${{ secrets.NUGET_SECRET }}
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.401'
include-prerelease: false
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build src/DevilDaggersInfo.Web.sln -c Release
- name: Test
run: dotnet test src/DevilDaggersInfo.Web.sln -c Release --no-build
- name: Pack
run: |
dotnet pack src/DevilDaggersInfo.Web.ApiSpec.Admin -c Release -o .
dotnet pack src/DevilDaggersInfo.Web.ApiSpec.Main -c Release -o .
dotnet pack src/DevilDaggersInfo.Web.ApiSpec.Tools -c Release -o .
- name: Push
run: dotnet nuget push *.nupkg -s nuget.org -k ${NUGET_SECRET} -n --skip-duplicate
env:
NUGET_SECRET: ${{ secrets.NUGET_SECRET }}

0 comments on commit ab1e41b

Please sign in to comment.