sharethis/.circleci/config.yml

20 lines
549 B
YAML
Raw Normal View History

2022-04-14 09:16:26 -04:00
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
jobs:
say-hello:
2022-04-14 09:25:00 -04:00
machine: true
resource_class: otremblay/some-runner
2022-04-14 09:16:26 -04:00
steps:
2022-04-14 09:25:00 -04:00
- run: echo "Hi I'm on Runners!"
2022-04-14 09:16:26 -04:00
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:
say-hello-workflow:
jobs:
- say-hello