Skip to content

Refactoring, multiple timeouts, code hardening and cleanup (#19) #2

Refactoring, multiple timeouts, code hardening and cleanup (#19)

Refactoring, multiple timeouts, code hardening and cleanup (#19) #2

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore dependencies
run: dotnet restore ./src/DataStax.AstraDB.DataApi/
- name: Build
run: dotnet build ./src/DataStax.AstraDB.DataApi/ --configuration Release --no-restore