Skip to content

Commit

Permalink
Merge branch 'BiDuang:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
huizm authored Nov 24, 2023
2 parents a878b61 + 980b47d commit 08981ed
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "nuget" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
name: Test on ${{ matrix.os }} .NET ${{ matrix.dotnet_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
dotnet_version: ['7','8']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet_versions }}
- uses: actions/checkout@v4
- name: Restore packages
run: dotnet restore
- name: Test
run: dotnet test -c Release -f net8.0 --no-restore

0 comments on commit 08981ed

Please sign in to comment.