mpenning is running a demo of GitHub Actions 🚀 #117
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: GitHub Actions | |
run-name: ${{ github.actor }} is running a demo of GitHub Actions 🚀 | |
on: [push] | |
jobs: | |
CodeAnalysis-GitHub-Actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Embold.io Github CodeAnalysis Actions | |
uses: embold/[email protected] | |
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | |
- name: Run tests as a workflow job demo | |
run: | | |
cd tests && pytest -v -x -s | |
# ${{ github.workspace }} | |
- run: echo "🍏 This demo job's status is ${{ job.status }}." |