diff options
author | Lorenz Diener <[email protected]> | 2022-11-11 00:51:26 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2022-11-11 00:51:26 +0200 |
commit | c6a41932113a54f675c770a28615d13f58299f0e (patch) | |
tree | c789b40077b4937851890154c791c016035dab2e /.circleci | |
parent | 78a1c174688d51040d76fce0b9bc7693ec985a97 (diff) | |
download | mastodon.py-c6a41932113a54f675c770a28615d13f58299f0e.tar.gz |
Add .circleci/config.yml
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..6554e1f --- /dev/null +++ b/.circleci/config.yml | |||
@@ -0,0 +1,26 @@ | |||
1 | # Use the latest 2.1 version of CircleCI pipeline process engine. | ||
2 | # See: https://circleci.com/docs/2.0/configuration-reference | ||
3 | version: 2.1 | ||
4 | |||
5 | # Define a job to be invoked later in a workflow. | ||
6 | # See: https://circleci.com/docs/2.0/configuration-reference/#jobs | ||
7 | jobs: | ||
8 | say-hello: | ||
9 | # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. | ||
10 | # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor | ||
11 | docker: | ||
12 | - image: cimg/base:stable | ||
13 | # Add steps to the job | ||
14 | # See: https://circleci.com/docs/2.0/configuration-reference/#steps | ||
15 | steps: | ||
16 | - checkout | ||
17 | - run: | ||
18 | name: "Say hello" | ||
19 | command: "echo Hello, World!" | ||
20 | |||
21 | # Invoke jobs via workflows | ||
22 | # See: https://circleci.com/docs/2.0/configuration-reference/#workflows | ||
23 | workflows: | ||
24 | say-hello-workflow: | ||
25 | jobs: | ||
26 | - say-hello | ||