Testing Git Action for git pull #4
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 on Pull | |
run-name: Testing Git Action for git pull | |
on: [push] | |
jobs: | |
trail-ubuntu-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: List all files | |
run: ls -l | |
- name: printing the secrets | |
run: | | |
echo "${{ secrets.SECRET_KEYS }}" | |