Skip to content

Adding continuous delivery workflow for bindings for Azure Functions … #10

Adding continuous delivery workflow for bindings for Azure Functions …

Adding continuous delivery workflow for bindings for Azure Functions … #10

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'