12 lines
224 B
YAML
12 lines
224 B
YAML
name: Docker Test
|
|
on: [push]
|
|
|
|
jobs:
|
|
test-docker:
|
|
runs on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Run a Docker container
|
|
run: docker run hello-world
|