-
-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (48 loc) · 1.36 KB
/
continuous-integration.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
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build-and-test-azurefunctions-in-process:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Restore
run: |
dotnet restore src/RethinkDb.Azure.WebJobs.Extensions
dotnet restore src/RethinkDb.Azure.Functions.Worker.Extensions
- name: Build
run: |
dotnet build src/RethinkDb.Azure.WebJobs.Extensions --configuration Release --no-restore
dotnet build src/RethinkDb.Azure.Functions.Worker.Extensions --configuration Release --no-restore
- name: Test
run: dotnet test test/RethinkDb.Azure.WebJobs.Extensions.Tests --configuration Release
code-scanning:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: CodeQL Initialize
uses: github/codeql-action/init@v3
with:
languages: 'csharp'
- name: CodeQL Autobuild
uses: github/codeql-action/autobuild@v3
- name: CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:csharp'