Skip to content

Support for Amazon S3 #6

Support for Amazon S3

Support for Amazon S3 #6

Workflow file for this run

name: Test non-cloud-based projects
on:
pull_request:
branches: [main]
jobs:
build-and-test:
name: Runs on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: dotnet build -c Debug
- name: Test
run: dotnet test --no-build --filter "TestCategory!~Cloud"