From 38b5ec58cc82458f2a501d878a870a652af05d5e Mon Sep 17 00:00:00 2001 From: kelle Date: Thu, 3 Apr 2025 13:36:44 -0700 Subject: [PATCH] add ads_token to actions --- .github/workflows/run_tests.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 42aec4c..96a1337 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -24,6 +24,17 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Check ADS_TOKEN + shell: bash + env: + ADS_TOKEN: ${{ secrets.ADS_TOKEN }} + run: | + if [[ -z "${ADS_TOKEN}" ]]; then + echo "ADS_TOKEN is not set, ADS tests will be skipped" + else + echo "ADS_TOKEN is set" + fi + - name: Checkout template database repo uses: actions/checkout@v4 with: