[~] testing fworch user for dotnet unit tests #147
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'documentation/**' | |
| - 'design/**' | |
| pull_request: | |
| types: [ ready_for_review, review_requested ] | |
| paths-ignore: | |
| - 'documentation/**' | |
| - 'design/**' | |
| jobs: | |
| test_install: | |
| name: test build on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, ubuntu-20.04, ubuntu-22.04] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: do test install in case of merged pull request | |
| run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K --skip-tags unittests | |
| - name: switch to fworch user for c# unit tests | |
| run: sudo su -l fworch | |
| - name: opening test files location | |
| run: cd /test/csharp/FWO.Test | |
| - name: exec dotnet test | |
| run: dotnet restore && dotnet build && dotnet test |