test: CHECK #2
Workflow file for this run
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: "CODECOV" | |
on: | |
pull_request: | |
jobs: | |
codecov: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "check is CODECOV_TOKEN exists" | |
env: | |
super_secret: ${{ secrets.CODECOV_TOKEN }} | |
if: ${{ env.super_secret == '' }} | |
run: 'echo "echo the secret \"CODECOV_TOKEN\" has not been made; echo please go to \"settings \> secrets \> actions\" to create it"' |