This repository was archived by the owner on Dec 17, 2025. It is now read-only.
generated from devantler-tech/dotnet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (68 loc) · 2.44 KB
/
test.yaml
File metadata and controls
69 lines (68 loc) · 2.44 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Test .NET solution or project
permissions:
packages: read
on:
workflow_dispatch:
pull_request:
merge_group:
push:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == false
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Install kind CLI
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0
with:
repo: kubernetes-sigs/kind
extension-matching: disable
rename-to: kind
chmod: 0755
- name: Install k3d CLI
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0
with:
repo: k3d-io/k3d
extension-matching: disable
rename-to: k3d
chmod: 0755
- name: Install talosctl CLI
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0
with:
repo: siderolabs/talos
extension-matching: disable
asset-name: talosctl
rename-to: talosctl
chmod: 0755
- name: Install flux CLI
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0
with:
repo: fluxcd/flux2
- name: Install ArgoCD CLI
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0
with:
repo: argoproj/argo-cd
extension-matching: disable
rename-to: argocd
chmod: 0755
- uses: azure/setup-kubectl@776406bce94f63e41d621b960d78ee25c8b76ede # v4.0.1
- uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
- name: Install Cilium CLI
uses: jaxxstorm/action-install-gh-release@6096f2a2bbfee498ced520b6922ac2c06e990ed2 # v2.1.0
with:
repo: cilium/cilium-cli
- name: Test .NET solution or project
uses: devantler-tech/composite-actions/dotnet-test-action@d4b23f9e20423712a3300a63bdbaf4ac70fee721 # v.1.9.2
with:
app_id: ${{ vars.APP_ID }}
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}