All checks were successful
GitHub Actions Demo / Explore-GitHub-Actions (push) Successful in 3s
9 lines
214 B
YAML
9 lines
214 B
YAML
name: GitHub Actions Demo
|
|
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
|
|
on: [push]
|
|
jobs:
|
|
Explore-GitHub-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "🎉 Hello World."
|
|
|