Skip to content

add missing oracle section in readme #260

add missing oracle section in readme

add missing oracle section in readme #260

Workflow file for this run

name: Build and Test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ "**" ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.x.x'
- name: Build project
run: |
for p in $(find ./src -name *.csproj); do dotnet build $p --configuration Release; done
- name: Test
run: dotnet test --filter 'Category!=IntegrationTest' --no-build --verbosity normal
- name: Generate a NuGet package
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')
run: |
for p in $(find ./src -name *.csproj); do dotnet pack $p --no-build -c Release -o .; done
- name: Push to GitHub package registry
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')
run: dotnet nuget push *.nupkg -k ${{secrets.NUGETORGTOKEN}} -s https://api.nuget.org/v3/index.json --skip-duplicate