Files
specklepy/.circleci/config.yml
T
2025-04-01 10:28:34 +01:00

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