Skip to content

chore(deps): update actions/attest-build-provenance action to v3.2.0 #2521

chore(deps): update actions/attest-build-provenance action to v3.2.0

chore(deps): update actions/attest-build-provenance action to v3.2.0 #2521

Workflow file for this run

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5
with:
global-json-file: global.json
- name: Cache NuGet packages
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
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