chore(deps): update spec digest to 4443c34 #2258
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: E2E Test | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
branches: | |
- main | |
merge_group: | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5 | |
with: | |
global-json-file: global.json | |
- name: Cache NuGet packages | |
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', 'Directory.Packages.props', 'global.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Initialize Tests | |
run: | | |
git submodule update --init --recursive | |
cp spec/specification/assets/gherkin/*.feature test/OpenFeature.E2ETests/Features/ | |
- name: Run Tests | |
run: dotnet test test/OpenFeature.E2ETests/ --configuration Release --logger GitHubActions |