We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e22ac commit f2cc57eCopy full SHA for f2cc57e
.github/workflows/test-install.yml
@@ -21,11 +21,15 @@ jobs:
21
runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@v4
24
+ - name: Set environment variable
25
+ run: echo "RUNNING_ON_GITHUB=1" >> $GITHUB_ENV
26
- name: Setup dotnet
27
uses: actions/setup-dotnet@v4
28
- name: exec dotnet test
29
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator/roles/tests-unit/files/FWO.Test && dotnet restore && dotnet build && dotnet test --filter "Name=HtmlToPdfTest"
-
30
+ env:
31
+ RUNNING_ON_GITHUB_ACTIONS: ${{ env.RUNNING_ON_GITHUB }}
32
+
33
test_ubuntu_latest:
34
name: test build on ubuntu latest
35
0 commit comments