Skip to content

feat: write objects to blob storage #3538

feat: write objects to blob storage

feat: write objects to blob storage #3538

Workflow file for this run

name: PR - Run All Tests
on:
pull_request:
branches:
- 'main'
- 'feat/rfc'
paths:
- 'client/**'
- 'ietf/**'
- 'playwright/**'
- 'requirements.txt'
- 'package.json'
jobs:
# -----------------------------------------------------------------
# PREPARE
# -----------------------------------------------------------------
prepare:
name: Prepare
runs-on: ubuntu-latest
outputs:
base_image_version: ${{ steps.baseimgversion.outputs.base_image_version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
fetch-tags: false
- name: Get Base Image Target Version
id: baseimgversion
run: |
echo "base_image_version=$(sed -n '1p' dev/build/TARGET_BASE)" >> $GITHUB_OUTPUT
# -----------------------------------------------------------------
# TESTS
# -----------------------------------------------------------------
tests:
name: Run Tests
uses: ./.github/workflows/tests.yml

Check failure on line 41 in .github/workflows/ci-run-tests.yml

View workflow run for this annotation

GitHub Actions / PR - Run All Tests

Invalid workflow file

The workflow is not valid. In .github/workflows/ci-run-tests.yml (Line: 41, Col: 11): Error from called workflow ietf-tools/datatracker/.github/workflows/tests.yml@ffa2097c17e30673ebc04351f1daf651aa741868 (Line: 33, Col: 9): Unexpected value 'environment'
needs: [prepare]
with:
ignoreLowerCoverage: false
skipSelenium: true
targetBaseVersion: ${{ needs.prepare.outputs.base_image_version }}