10 lines
180 B
YAML
10 lines
180 B
YAML
name: My Actions
|
|
run-name: Setting up Actions🚀
|
|
on: [push]
|
|
jobs:
|
|
Explore:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: "echo '🥳 the job is running!'"
|
|
|