test_repo/.github/workflows/docker_demo.yml
Brendan b6adff6862
Some checks failed
Windows Action / test (push) Waiting to run
Docker demo / Explore-GitHub-Actions (push) Failing after -43s
GitHub Actions Demo / Explore-GitHub-Actions (push) Successful in -42s
name conflict
2024-03-19 10:11:23 -06:00

12 lines
269 B
YAML

name: Docker demo
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
container: node:18
steps:
- uses: actions/checkout@v4
- run: |
docker run hello-world
- run: echo "🍏 This job's status is ${{ job.status }}."