Skip to content

Bump gulp-sass from 5.1.0 to 6.0.0 in /src/SJP.Schematic.Reporting #1744

Bump gulp-sass from 5.1.0 to 6.0.0 in /src/SJP.Schematic.Reporting

Bump gulp-sass from 5.1.0 to 6.0.0 in /src/SJP.Schematic.Reporting #1744

Workflow file for this run

name: oracle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
db:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tag: [11, 18, 21, latest]
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@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.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 }}