mirror of
https://github.com/timsutton/brigadier.git
synced 2025-06-06 01:31:19 -04:00
Merge 6fcb25000f
into 965bfedf4c
This commit is contained in:
commit
0edc23ad5c
1 changed files with 24 additions and 0 deletions
24
.circleci/config.yml
Normal file
24
.circleci/config.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# 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:
|
||||||
|
# Specify the execution environment.
|
||||||
|
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
# Add steps to the job
|
||||||
|
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: "Say hello"
|
||||||
|
command: "echo Hello, World!"
|
||||||
|
# Invoke jobs via workflows
|
||||||
|
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
||||||
|
workflows:
|
||||||
|
say-hello-workflow:
|
||||||
|
jobs:
|
||||||
|
- say-hello
|
Loading…
Add table
Add a link
Reference in a new issue