Skip to content

Bump the nuget group with 1 update #2206

Bump the nuget group with 1 update

Bump the nuget group with 1 update #2206

Workflow file for this run

name: oracle
permissions:
contents: read
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
db:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tag: [21]
services:
oracle:
image: gvenzl/oracle-xe:${{ matrix.tag }}
env:
ORACLE_PASSWORD: schematic_root
ORACLE_DATABASE: schematic
APP_USER: schematic
APP_USER_PASSWORD: schematic
options: >-
--health-cmd healthcheck.sh
--health-interval 20s
--health-timeout 10s
--health-retries 10
ports:
- 1521:1521
steps:
- uses: actions/checkout@v6
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Install dependencies
run: dotnet restore
working-directory: src/SJP.Schematic.Oracle.Tests
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: src/SJP.Schematic.Oracle.Tests
- name: Test
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"
working-directory: src/SJP.Schematic.Oracle.Tests
env:
ConnectionStrings__Oracle_TestDb: Data Source=localhost/XEPDB1; User Id=schematic; Password=schematic
- name: Coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}