Skip to content

Do not retry (or panic in logs) on upload exceptions when the version is no longer scheduled for analysis. #4528

Do not retry (or panic in logs) on upload exceptions when the version is no longer scheduled for analysis.

Do not retry (or panic in logs) on upload exceptions when the version is no longer scheduled for analysis. #4528

Workflow file for this run

name: Token test
on:
push:
branches:
- main
- master
pull_request:
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
env:
PUB_ENVIRONMENT: bot.github
jobs:
token-test:
# This test creates a id-token, not for talking to an external service, but
# for testing that we are able to verify and validate the token.
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
- name: Install dependencies
run: dart pub get
working-directory: app
- name: env
run: env
- name: Run test
run: dart test -P presubmit test/service/openid/github_actions_id_token_test.dart
working-directory: app