Merge pull request #279 from xiao201208/test/ak #1
This file contains 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: Test API Key | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Test the secret | |
env: | |
TEST_ACCOUNT_KEY: ${{ secrets.TEST_ACCOUNT_KEY }} | |
VALIDATE_ACCOUNT_KEY: ${{ secrets.VALIDATE_ACCOUNT_KEY }} | |
run: | | |
echo "TEST_ACCOUNT_KEY: ${TEST_ACCOUNT_KEY}" | |
echo "VALIDATE_ACCOUNT_KEY: ${VALIDATE_ACCOUNT_KEY}" |