18 lines
243 B
YAML
18 lines
243 B
YAML
on:
|
|
push
|
|
|
|
name: ci
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker-practice/actions-setup-docker@master
|
|
timeout-minutes: 12
|
|
- run: |
|
|
set -x
|
|
|
|
docker version
|
|
|
|
docker run --rm hello-world
|