8000 Merge pull request #94 from cnblogs/go-msai-9.5.0 · cnblogs/dashscope-sdk@0cabefb · GitHub
[go: up one dir, main page]

Skip to content

Merge pull request #94 from cnblogs/go-msai-9.5.0 #176

Merge pull request #94 from cnblogs/go-msai-9.5.0

Merge pull request #94 from cnblogs/go-msai-9.5.0 #176

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release
0