File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 2
2
"image" : " mcr.microsoft.com/devcontainers/universal:2" ,
3
3
"features" : {
4
4
"ghcr.io/devcontainers/features/github-cli:1" : {},
5
- "ghcr.io/devcontainers-contrib/features/act:1" : {}
5
+ "ghcr.io/devcontainers-contrib/features/act:1" : {},
6
+ "ghcr.io/devcontainers/features/docker-in-docker:2" : {}
6
7
}
7
8
}
Original file line number Diff line number Diff line change
1
+ name : GitHub Actions Demo
2
+ run-name : ${{ github.actor }} is testing out GitHub Actions 🚀
3
+ on : [push]
4
+ jobs :
5
+ Explore-GitHub-Actions :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - run : echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
9
+ - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
10
+ - run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
11
+ - name : Check out repository code
12
+ uses : actions/checkout@v4
13
+ - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
14
+ - run : echo "🖥️ The workflow is now ready to test your code on the runner."
15
+ - name : List files in the repository
16
+ run : |
17
+ ls ${{ github.workspace }}
18
+ - run : echo "🍏 This job's status is ${{ job.status }}."
Original file line number Diff line number Diff line change @@ -11,3 +11,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- CHANGELOG.md
13
13
- LICENSE.md
14
+ - Github Actions Demo
You can’t perform that action at this time.
0 commit comments