Skip to content

Commit 741166a

Browse files
authored
maintenance
1 parent 9ecab0b commit 741166a

File tree

9 files changed

+8
-70
lines changed

9 files changed

+8
-70
lines changed
Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
1-
# For most projects, this workflow file will not need changing; you simply need
2-
# to commit it to your repository.
3-
#
4-
# You may wish to alter this file to override the set of languages analyzed,
5-
# or to provide custom queries or build logic.
6-
#
7-
# ******** NOTE ********
8-
# We have attempted to detect the languages in your repository. Please check
9-
# the `language` matrix defined below to confirm you have the correct set of
10-
# supported CodeQL languages.
11-
# ******** NOTE ********
12-
131
name: "CodeQL Analyze"
142

153
on:
164
pull_request:
17-
branches: [ develop, main ]
5+
branches: [ develop ]
186
schedule:
197
- cron: '36 12 * * 3'
208

@@ -26,9 +14,6 @@ jobs:
2614
fail-fast: false
2715
matrix:
2816
language: [ 'csharp' ]
29-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
30-
# Learn more...
31-
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
3217

3318
steps:
3419
- name: Checkout repository
@@ -41,31 +26,11 @@ jobs:
4126
uses: actions/setup-dotnet@v1
4227
with:
4328
dotnet-version: '5.0.x'
44-
# Initializes the CodeQL tools for scanning.
4529
- name: Initialize CodeQL
4630
uses: github/codeql-action/init@v1
4731
with:
4832
languages: ${{ matrix.language }}
49-
# If you wish to specify custom queries, you can do so here or in a config file.
50-
# By default, queries listed here will override any specified in a config file.
51-
# Prefix the list here with "+" to use these queries and those in the config file.
52-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
53-
54-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55-
# If this step fails, then you should remove it and run the build manually (see below)
5633
- name: Autobuild
5734
uses: github/codeql-action/autobuild@v1
58-
59-
# ℹ️ Command-line programs to run using the OS shell.
60-
# 📚 https://git.io/JvXDl
61-
62-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
63-
# and modify them (or add more) to build your code if your project
64-
# uses a compiled language
65-
66-
#- run: |
67-
# make bootstrap
68-
# make release
69-
7035
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
36+
uses: github/codeql-action/analyze@v1

.github/workflows/dotnet-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ ubuntu-latest, windows-latest ]
15+
os: [ ubuntu-latest, windows-latest, macos-latest ]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Setup .NET Core 3.1

.github/workflows/sonarqube-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
dotnet-version: '5.0.x'
2323
- name: SonarScanner for .NET Core with pull request decoration support
24-
uses: highbyte/sonarscan-dotnet@2.0-beta
24+
uses: highbyte/sonarscan-dotnet@2.0
2525
with:
2626
sonarProjectKey: qatoolkit_qatoolkit-engine-probes-net
2727
sonarProjectName: qatoolkit_qatoolkit-engine-probes-net

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Miha Jakovac
3+
Copyright (c) 2020-2021 Miha Jakovac
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public class MyProbe : IProbe<string>
112112

113113
MIT License
114114

115-
Copyright (c) 2020 Miha Jakovac
115+
Copyright (c) 2020-2021 Miha Jakovac
116116

117117
Permission is hereby granted, free of charge, to any person obtaining a copy
118118
of this software and associated documentation files (the "Software"), to deal

qatoolkit-engine-probes-net.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30804.86
4+
VisualStudioVersion = 16.0.30611.23
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QAToolKit.Engine.Probes", "src\QAToolKit.Engine.Probes\QAToolKit.Engine.Probes.csproj", "{5A2191E1-6682-437F-8ED2-DE9324BFC4F4}"
77
EndProject

src/QAToolKit.Engine.Probes.Test/QAToolKit.Engine.Probes.Test.csproj

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFrameworks>net5.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
@@ -29,22 +29,4 @@
2929
<ProjectReference Include="..\QAToolKit.Engine.Probes\QAToolKit.Engine.Probes.csproj" />
3030
</ItemGroup>
3131

32-
<ItemGroup>
33-
<None Update="Assets\AddBike.json">
34-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
35-
</None>
36-
<None Update="Assets\addPet.json">
37-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
38-
</None>
39-
<None Update="Assets\GetAllBikes.json">
40-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
41-
</None>
42-
<None Update="Assets\getPetByIdAndStatus.json">
43-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
44-
</None>
45-
<None Update="Assets\getPetById.json">
46-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
47-
</None>
48-
</ItemGroup>
49-
5032
</Project>

src/QAToolKit.Engine.Probes.Test/global.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/QAToolKit.Engine.Probes/QAToolKit.Engine.Probes.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,4 @@
3232
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
3333
<None Include="..\..\README.md" Pack="false" PackagePath="" />
3434
</ItemGroup>
35-
36-
<ItemGroup>
37-
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
38-
</ItemGroup>
3935
</Project>

0 commit comments

Comments
 (0)