fix: 数据库换为litedb,避免再出现数据库报错 #77
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
paths: | |
- 'llcomNext/**' | |
- '.github/workflows/test.yml' | |
pull_request: | |
paths: | |
- 'llcomNext/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-24.04, windows-2022, windows-11-arm, ubuntu-24.04-arm, macos-13, macos-14] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Test | |
run: | | |
cd llcomNext | |
dotnet test |