Skip to content

Fixing up XML warnings that are found during dotnet 8.0 upgrade. #135

Fixing up XML warnings that are found during dotnet 8.0 upgrade.

Fixing up XML warnings that are found during dotnet 8.0 upgrade. #135

Workflow file for this run

name: CI
on:
push:
branches: [ mainline ]
pull_request:
branches: [ mainline ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Setup .Net Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: '8.0.x'
- name: Install Dependencies
run: dotnet restore
- name: Build
working-directory: ./smartsheet-csharp-sdk
run: dotnet build --configuration Release --no-restore
- name: Clone smartsheet/smartsheet-sdk-tests PRIVATE repository
uses: GuillaumeFalourd/clone-github-repo-action@v2
with:
owner: 'smartsheet'
repository: 'smartsheet-sdk-tests'
access-token: ${{ secrets.SDK_TEST_ACCESS_TOKEN }}
- name: Setup Mock API
run: |
smartsheet-sdk-tests/ci_scripts/install_wiremock.sh
smartsheet-sdk-tests/ci_scripts/start_wiremock.sh
- name: Run Mock API Tests
working-directory: ./mock-api-test-sdk-net80
run: |
dotnet build --configuration Release --no-restore
dotnet test --no-restore
- name: Run Integration Tests
continue-on-error: true
working-directory: ./integration-test-sdk-net60
env:
SMARTSHEET_ACCESS_TOKEN: ${{secrets.SMARTSHEET_ACCESS_TOKEN}}
run: |
dotnet build --configuration Release --no-restore
dotnet test --no-restore