-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (49 loc) · 1.46 KB
/
oracle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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 }}