chore(deps): update dependency microsoft.net.test.sdk to 17.12.0 #177
Workflow file for this run
This file contains 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
on: | |
- push | |
- pull_request | |
name: Continuous integration | |
jobs: | |
example-policy-tests: | |
name: Test suite of example policy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '7.0.x' | |
include-prerelease: true | |
- run: dotnet test example/MyFirstKubewardenPolicy.Tests | |
example-policy-e2e-tests: | |
name: Run e2e tests of the example policy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '7.0.x' | |
include-prerelease: true | |
- | |
name: Install dependencies | |
uses: kubewarden/github-actions/policy-gh-action-dependencies@v2 | |
- name: Run e2e tests | |
run: | | |
cd example/MyFirstKubewardenPolicy | |
make e2e-tests |