test #1
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: Echo on PR | |
on: | |
pull_request: | |
types: [opened] | |
push: | |
jobs: | |
echo_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo abc | |
run: echo 'abc' | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Generate text file | |
run: | | |
echo '{"context":"Pandas tests", "description":"90/100", "state":"success"}' > gh-status.json | |
echo "### Hello world1! :rocket:" >> $GITHUB_STEP_SUMMARY | |
- name: Upload file to GitHub Artifact1 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: gh-status | |
path: gh-status.json | |
# abc |