Skip to content

Move source files into src folder #152

Move source files into src folder

Move source files into src folder #152

Workflow file for this run

name: '♻️ CI'
on:
workflow_dispatch:
pull_request_target:
branches:
- '*'
push:
branches:
- master
schedule:
- cron: '33 3 * * 3'
env:
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
jobs:
pipeline:
name: Build and Test
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Build
run: dotnet build src/CloudFlare.Client.sln --configuration ${{ env.buildConfiguration }}
- name: Run Tests
run: dotnet test src/CloudFlare.Client.sln --logger "trx;logfilename=TestResults.trx" --no-build --configuration ${{ env.buildConfiguration }} --collect "XPlat Code Coverage;Format=opencover,cobertura"