mirror of
https://github.com/swaywm/sway.git
synced 2026-07-09 00:06:15 -04:00
18 lines
252 B
YAML
18 lines
252 B
YAML
|
|
version: 2
|
||
|
|
jobs:
|
||
|
|
build:
|
||
|
|
docker:
|
||
|
|
- image: debian:stretch
|
||
|
|
|
||
|
|
steps:
|
||
|
|
- checkout
|
||
|
|
|
||
|
|
- run:
|
||
|
|
name: Greeting
|
||
|
|
command: echo Hello, world.
|
||
|
|
|
||
|
|
- run:
|
||
|
|
name: Print the Current Time
|
||
|
|
command: date
|
||
|
|
|