Skip to content

Bump Oracle.ManagedDataAccess.Core from 2.19.300 to 2.19.310 #178

Bump Oracle.ManagedDataAccess.Core from 2.19.300 to 2.19.310

Bump Oracle.ManagedDataAccess.Core from 2.19.300 to 2.19.310 #178

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: BuildAndRunTests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build the application
run: dotnet build --no-restore --configuration ${{ matrix.configuration }}
- name: Execute unit tests
run: dotnet test --verbosity normal