18 lines
302 B
YAML
18 lines
302 B
YAML
version: 2.1
|
|
|
|
# Define the jobs we want to run for this project
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: cimg/base:2023.03
|
|
steps:
|
|
- run: echo "so long and thanks for all the fish"
|
|
|
|
# Orchestrate our job run sequence
|
|
workflows:
|
|
build_and_test:
|
|
when:
|
|
false
|
|
jobs:
|
|
- build
|